Statistiques
| Révision :

root / tei / css / mbExtruder.css @ 2

Historique | Voir | Annoter | Télécharger (6,32 ko)

1
/*
2
 * jquery.mb.components
3
 * Copyright (c) 2001-2010. Matteo Bicocchi (Pupunzi); Open lab srl, Firenze - Italy
4
 * email: mbicocchi@open-lab.com
5
 * site: http://pupunzi.com
6
 *
7
 * Licences: MIT, GPL
8
 * http://www.opensource.org/licenses/mit-license.php
9
 * http://www.gnu.org/licenses/gpl.html
10
 */
11

    
12
.extruder{
13
  position:fixed;
14
  cursor:default;
15
  background:url("../elements/extruder_blank.png");
16
}
17

    
18
.extruder .header{
19
  height:27px;
20
}
21

    
22
.extruder .content{
23
  display:none;
24
  background:url("../elements/extruder_bgnd.png") repeat-y bottom left;
25
}
26

    
27
.extruder.open .content{
28
  -moz-box-shadow:#999 2px 1px 5px;
29
  -webkit-box-shadow:#999 2px 1px 5px;
30
}
31

    
32

    
33
.extruder .footer{
34
  display:none;
35
  height:10px;
36
  background:#000;
37
  -moz-border-radius: 0 0 8px 8px;
38
  -webkit-border-bottom-right-radius: 5px;
39
  -webkit-border-bottom-left-radius: 5px;
40
  -moz-box-shadow:#999 2px 1px 5px;
41
  -webkit-box-shadow:#999 2px 1px 5px;
42
}
43

    
44
/*extruder TOP*/
45
.extruder.top .flap{
46
  color:white;
47
  text-shadow: #333 2px 2px 2px;
48
  font:18px/28px Arial, Helvetica, sans-serif;
49
  text-align:center;
50
  display:block;
51
  margin:auto;
52
  padding:0 5px 5px 5px;
53
  height:30px;
54
  width:180px;
55
  background:#000;
56
  -moz-border-radius:0 0 10px 10px;
57
  -webkit-border-bottom-left-radius:10px;
58
  -webkit-border-bottom-right-radius:10px;
59
  -moz-box-shadow:#999 2px 1px 5px;
60
  -webkit-box-shadow:#999 2px 1px 5px;
61

    
62
  /*background:url("../elements/extruder_flap.png") no-repeat top center;*/
63
  cursor:pointer;
64
}
65
.extruder.top .content{
66
  -moz-border-radius: 0 0 10px 10px;
67
  -webkit-border-bottom-left-radius:10px;
68
  -webkit-border-bottom-right-radius:10px;
69
}
70

    
71

    
72
/*extruder BOTTOM*/
73
.extruder.bottom .flap{
74
  position:relative;
75
  color:white;
76
  text-shadow: #333 2px 2px 2px;
77
  font:18px/28px Arial, Helvetica, sans-serif;
78
  text-align:center;
79
  display:block;
80
  margin:auto;
81
  margin-top:1px;
82
  padding:0 5px 5px 5px;
83
  height:30px;
84
  width:180px;
85
  background:#000;
86
  -moz-border-radius:10px 10px 0 0;
87
  -webkit-border-top-left-radius:10px;
88
  -webkit-border-top-right-radius:10px;
89
  -moz-box-shadow:#999 2px 0px 2px;
90
  -webkit-box-shadow:#999 2px 0px 2px;
91

    
92
  /*background:url("../elements/extruder_flap.png") no-repeat top center;*/
93
  cursor:pointer;
94
}
95

    
96
.extruder.bottom .footer{
97
  -moz-border-radius:10px 10px 0 0 ;
98
  -webkit-border-top-left-radius:10px;
99
  -webkit-border-top-right-radius:10px;
100
  position:relative;
101
  margin-top:-5px;
102
}
103

    
104
.extruder.bottom .content{
105
  -moz-border-radius:10px 10px 0 0 ;
106
  -webkit-border-top-left-radius:10px;
107
  -webkit-border-top-right-radius:10px;
108
}
109

    
110
.extruder.bottom .ext_wrapper{
111
  bottom:0;
112
}
113

    
114

    
115
/*extruder LEFT*/
116

    
117
.extruder.left{
118
  height:100%;
119
  background:url("../elements/extruder_blank.png");
120
}
121

    
122
.extruder.left.open .content{
123
  -moz-box-shadow:#999 2px 0px 5px;
124
  -webkit-box-shadow:#999 2px 0px 5px;
125
}
126

    
127

    
128
.extruder.left .content{
129
  border-right:3px solid #000;
130
}
131

    
132

    
133
.extruder.left .ext_wrapper{
134
  height:100%;
135
}
136

    
137
.extruder.left .footer{
138
  display:none;
139
}
140

    
141
.extruder.left .flap{
142
  font-size:18px;
143
  color:white;
144
  top:0;
145
  padding:10px 0 10px 10px;
146
  margin-right:-37px;
147
  background:#000;
148
  width:30px;
149
  position:absolute;
150
  right:0;
151
  -moz-border-radius:0 10px 10px 0;
152
  -webkit-border-top-right-radius:10px;
153
  -webkit-border-bottom-right-radius:10px;
154
  -moz-box-shadow:#999 2px 0px 5px;
155
  -webkit-box-shadow:#999 2px 0px 5px;
156
}
157

    
158
.extruder.left .flap .flapLabel{
159
  background:#000;
160
}
161

    
162

    
163

    
164
/*extruder RIGHT*/
165

    
166
.extruder.right{
167
  /*position:absolute;*/
168
  height:100%;
169
  background:url("../elements/extruder_blank.png");
170
}
171

    
172
.extruder.right .content{
173
  /*display:none;*/
174
  border-left:3px solid #000;
175
}
176

    
177
.extruder.right.open .content{
178
  -moz-box-shadow:#999 -2px 0px 5px;
179
  -webkit-box-shadow:#999 -2px 0px 5px;
180
}
181

    
182
.extruder.right .ext_wrapper{
183
  height:100%;
184
  right:0;
185
}
186

    
187
.extruder.right .footer{
188
  display:none;
189
}
190

    
191
.extruder.right .flap{
192
  font-size:18px;
193
  color:white;
194
  top:0;
195
  padding:10px 0 10px 10px;
196
  background:#000;
197
  width:30px;
198
  /*height:150px;*/
199
  position:absolute;
200
  /*overflow:hidden;*/
201
  left:-37px;
202
  -moz-border-radius:10px 0 0 10px;
203
  -webkit-border-top-left-radius:10px;
204
  -webkit-border-bottom-left-radius:10px;
205
  -moz-box-shadow:#999 -2px 0px 5px;
206
  -webkit-box-shadow:#999 -2px 0px 5px;
207
}
208

    
209
.extruder.right .flap .flapLabel{
210
  background:#000;
211
}
212

    
213

    
214

    
215

    
216

    
217

    
218

    
219
/*Extruder Content*/
220

    
221
  .extruder .voice{
222
    font:18px/18px Arial, Helvetica, sans-serif;
223
    color:white;
224
    padding:5px;
225
    padding-left:10px;
226
    height:27px;
227
    border-bottom:1px solid #333;
228
    background:url("../elements/extruder_blank.png") no-repeat bottom left;
229
    text-shadow:#333 2px 2px 2px;
230
  }
231
  .extruder .voice:last-child{
232
    border-bottom:none;
233
  }
234

    
235
 .extruder .voice .disabled{
236
   cursor:default;
237
  }
238
.extruder .text{
239
    background:#222;
240
    font:14px/16px Arial, Helvetica, sans-serif;
241
    color:gray;
242
    padding:10px;
243
    border-bottom:1px solid #333;
244
  text-shadow:#000 2px 2px 2px;
245
  }
246

    
247
  .extruder .voice.hover{
248
    background:url("../elements/extruder_voiceHover.png") no-repeat top;
249
  }
250

    
251
  .extruder .voice.sel{
252
    background:url("../elements/extruder_voiceHover.png") no-repeat top;
253
  }
254

    
255
  .extruder .voice img{
256
    float:left;
257
    margin-right:15px;
258
  }
259

    
260
  .extruder .voice a.label{
261
    display:block;
262
    height:30px;
263
    color:white;
264
    padding-top:0px;
265
    text-decoration:none;
266
  }
267

    
268
  .extruder .voice span.label{
269
    display:block;
270
    height:30px;
271
    color: #d0cfcf;
272
    padding-top:0px;
273
    text-decoration:none;
274
  }
275

    
276
  .extruder .voice{
277
    position:relative;
278
  }
279

    
280
  .extruder .settingsBtn{
281
    display:block;
282
    position:absolute;
283
    width:36px;
284
    height:36px;
285
    background: url("../elements/settingsBtn.png") no-repeat bottom;
286
    cursor:pointer;
287
    right:-3px;
288
    top:-4px;
289
    /*z-index:1000;*/
290
  }
291

    
292
  .extruder .optionsPanel{
293
    /*background: url("../elements/optionsPanel.png") no-repeat bottom;*/
294
    background: url("../elements/fuzz.gif");
295
    display:none;
296
    border-bottom:1px solid #333;
297
  }
298

    
299
  .extruder .voice.sel{
300
    background: url("../elements/extruder_voiceHover.png") no-repeat top;
301
  }
302

    
303

    
304
  /*Extruder Panel*/
305

    
306
  .optionsPanel .panelVoice a{
307
    text-decoration:none;
308
    display:block;
309
    color:#cccccc;
310
    padding:8px;
311
    padding-left:20px;
312
    font-size:16px;
313
    text-shadow:#333 1px 1px 1px;
314
    border-bottom:1px solid #444;
315
    cursor:pointer;
316
  }
317
  .optionsPanel .panelVoice a:hover{
318
    color:#fff;
319
    /*background: #666666;*/
320
    background: url("../elements/red_op_50.png");
321
  }
322

    
323
:focus {
324
        outline: 0;
325
}
326

    
327