source: Dev/trunk/src/client/dojox/av/widget/resources/Player.css

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 3.3 KB
Line 
1.playerContainer{
2        width:480px;
3        background:#76C8C4;
4        text-align:center;
5}
6.PlayerScreen{
7        background:#00FFFF;
8        width:320px;
9        height:240px;
10        margin-left:auto;
11        margin-right:auto;
12}
13.Controls{
14        height:85px;
15        background:#333333;
16        text-align:left;
17        width:100%;
18}
19.ControlsRight{
20        vertical-align:top;
21}
22.ControlsBottom{
23        vertical-align:bottom;
24}
25.StatusContainer{
26        width:100%;
27        height:100%;
28}
29.PlayContainer{
30        width:60px;
31        height:60px;
32}
33
34
35.Progress{
36        height:10px;
37}
38
39.Time, .Duration, .Status{
40        height:16px;
41        margin-top:0px;
42        color:#F5FFC8;
43        width:100%;
44}
45
46.Time{
47        padding-left:2px;
48}
49
50.Duration{
51        padding-right:2px;
52        text-align:right;
53}
54.StatusContainer{
55        padding:0;
56        border-collapse:collapse;
57}
58.Status{
59        height:20px;
60        background:#ff0000;
61        table-layout:fixed;
62}
63.Status.statusError .statusTitle, .Status.statusError .statusInfo{
64        color:#FF0000;
65}
66.Status .statusTitle{
67        font-weight:bold;
68        color:#A5B3E9;
69}
70.Status .statusInfo{
71        font-weight:normal;
72        color:#3770D6;
73}
74
75.Time, .Duration, .Status{
76        font-family:Verdana, Arial, Helvetica, sans-serif;
77        font-size:9px;
78        background:#000000;
79}
80
81.Time, .Duration{
82        width:60px;
83}
84
85.Volume{
86        width:30px;
87        height:30px;
88        float:right;
89        margin-right:2px;
90        margin-top:auto;
91        background-image:url(images/player_sprite.png);
92        background-repeat:no-repeat;
93        background-position:-1px -62px;
94        cursor:pointer;
95}
96.Volume:hover{
97        background-position:-33px -62px;
98}
99.PlayPauseToggle{
100        width:60px;
101        height:60px;
102        background-image:url(images/player_sprite.png);
103        background-repeat:no-repeat;
104        background-position:-1px -1px;
105        cursor:pointer;
106        vertical-align:middle;
107        line-height:60px;
108}
109.PlayPauseToggle:hover{
110        background-position:-63px -1px;
111        cursor:pointer;
112}
113.icon{
114        background-image:url(images/dojoPlayerIcons.png);
115        background-repeat:no-repeat;
116        width:22px;
117        height:22px;
118}
119
120.PlayPauseToggle .icon{
121        position:relative;
122        top:19px;
123        left:19px;
124        background-position:-1px -1px;
125}
126.PlayPauseToggle.Play .icon{
127        background-position:-1px -1px;
128}
129.PlayPauseToggle.Pause .icon{
130        background-position:-24px -1px;
131}
132
133
134
135.Progress{
136       
137}
138.Progress, .ProgressLoaded, .ProgressPosition, .ProgressHandle{
139        height:10px;
140}
141.ProgressLoaded, .ProgressPosition, .ProgressHandle{
142        position:absolute;
143}
144.ProgressLoaded{
145background:url(images/progressLoadedBk.png) repeat-x;
146}
147.ProgressHandle{
148        background-image:url(images/sliderHandleSprite.png);
149        background-position:0px 0px;
150        width:15px;
151        margin-left:0px;
152        cursor:pointer;
153}
154.ProgressHandle.over{
155        background-position:-15px 0px;
156}
157.ProgressPosition{
158        background:url(images/progressPositionBk.png) repeat-x;
159        width:0px;
160}
161.VolumeSlider{
162        position:absolute;
163}
164.VolumeSliderBack{
165        width:128px;
166        height:30px;
167        background-image:url(images/player_sprite.png);
168        background-repeat:no-repeat;
169        background-position:-1px -95px;
170}
171.VolumeSliderHandle{
172        position:absolute;
173        width:12px;
174        height:14px;
175        background-image:url(images/player_sprite.png);
176        background-repeat:no-repeat;
177        background-position:-1px -140px;
178        cursor:pointer;
179}
180.VolumeSliderHandle.over{
181        background-position:-15px -138px;
182        cursor:pointer;
183}
184.Volume .icon{ 
185        background-position:-60px -43px;
186        width:18px;
187        height:16px;
188        position:relative;
189        top:7px;
190        left:7px;
191}
192.Volume.mute .icon{     
193        background-position:-1px -43px;
194}
195.Volume.low .icon{     
196        background-position:-20px -43px;
197}
198.Volume.med .icon{     
199        background-position:-40px -43px;
200}
201.Volume.high .icon{     
202        background-position:-60px -43px;
203}
Note: See TracBrowser for help on using the repository browser.