diff options
author | John Mayhew | 2012-07-24 15:46:16 -0700 |
---|---|---|
committer | John Mayhew | 2012-07-24 15:46:16 -0700 |
commit | 9f240b8b9b1f5fb0f145c343ca5e533e25e81374 (patch) | |
tree | 407564eaa6466e8d4cf2eeee0c56dc623243586f /js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss | |
parent | d25359c75089215ee48838db081fd3d51cbbd85f (diff) | |
parent | 21d74af1e9fc57cc25cea8aa7408beabf79ff2f3 (diff) | |
download | ninja-9f240b8b9b1f5fb0f145c343ca5e533e25e81374.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja
Diffstat (limited to 'js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss')
-rw-r--r-- | js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss | 55 |
1 files changed, 45 insertions, 10 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss b/js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss index aa35fa8e..cce01c90 100644 --- a/js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss +++ b/js/panels/Timeline/TimelinePanel.reel/scss/TimelinePanel.scss | |||
@@ -148,20 +148,30 @@ POSSIBILITY OF SUCH DAMAGE. | |||
148 | padding-right: 5px; | 148 | padding-right: 5px; |
149 | } | 149 | } |
150 | .playbutton{ | 150 | .playbutton{ |
151 | background-image: url('../images/play.png'); | 151 | background: transparent url("../images/play.png") no-repeat; |
152 | background-repeat: no-repeat; | ||
153 | height: 18px; | 152 | height: 18px; |
154 | width: 18px; | 153 | width: 18px; |
155 | float: left; | 154 | float: left; |
156 | padding-right: 5px; | 155 | padding-right: 5px; |
156 | |||
157 | border: none; | ||
158 | margin: 0; | ||
159 | min-width: 0; | ||
160 | opacity: 0.8; | ||
161 | } | ||
162 | .playbutton:hover { | ||
163 | background-color: #474747; | ||
164 | opacity: 1; | ||
165 | } | ||
166 | .playbutton.active:hover { | ||
167 | background-color: #474747; | ||
168 | opacity: 1; | ||
169 | } | ||
170 | .playbutton:focus { | ||
171 | -webkit-box-shadow: none; | ||
157 | } | 172 | } |
158 | .pausebutton{ | 173 | .pausebutton{ |
159 | background-image: url('../images/pause.png'); | 174 | background-image: url("../images/pause.png"); |
160 | background-repeat: no-repeat; | ||
161 | height: 18px; | ||
162 | width: 18px; | ||
163 | float: left; | ||
164 | padding-right: 5px; | ||
165 | } | 175 | } |
166 | .forwardbutton{ | 176 | .forwardbutton{ |
167 | background-image: url('../images/play_next.png'); | 177 | background-image: url('../images/play_next.png'); |
@@ -295,7 +305,7 @@ POSSIBILITY OF SUCH DAMAGE. | |||
295 | top: 0; | 305 | top: 0; |
296 | left: 0; | 306 | left: 0; |
297 | position: absolute; | 307 | position: absolute; |
298 | z-index: 91; | 308 | z-index: 1; |
299 | opacity: 0.7; | 309 | opacity: 0.7; |
300 | } | 310 | } |
301 | .timebar{ | 311 | .timebar{ |
@@ -336,7 +346,6 @@ POSSIBILITY OF SUCH DAMAGE. | |||
336 | background: none; | 346 | background: none; |
337 | float:left; | 347 | float:left; |
338 | margin-left: 5%; | 348 | margin-left: 5%; |
339 | visibility: hidden; | ||
340 | } | 349 | } |
341 | 350 | ||
342 | /* Configuration menu */ | 351 | /* Configuration menu */ |
@@ -398,3 +407,29 @@ POSSIBILITY OF SUCH DAMAGE. | |||
398 | .layer-hidden { | 407 | .layer-hidden { |
399 | display: none; | 408 | display: none; |
400 | } | 409 | } |
410 | |||
411 | .tl_slider { | ||
412 | width: 127px; | ||
413 | height:5px; | ||
414 | float: left; | ||
415 | clear: none; | ||
416 | margin: 2px 0px 0px 0px; | ||
417 | } | ||
418 | |||
419 | .tl_slider .slider-track { | ||
420 | background: #292929; | ||
421 | width: 127px; | ||
422 | height: 4px; | ||
423 | border: 1px solid #000; | ||
424 | top: 3px; | ||
425 | } | ||
426 | |||
427 | .sliderClass { | ||
428 | float: left; | ||
429 | width: 127px | ||
430 | } | ||
431 | |||
432 | .sliderClass .knob { | ||
433 | background: url(../images/knob.png) no-repeat transparent center center; | ||
434 | margin-bottom: 2px; | ||
435 | } | ||