]> git.saurik.com Git - cydia.git/blame - Cydia.app/menes/style.css
The syslog is more useful.
[cydia.git] / Cydia.app / menes / style.css
CommitLineData
e04c7a62
JF
1/* iPhone.css - iPhone Interface Cascading Style Sheet
2 * Copyright (C) 2007-2008 Jay Freeman (saurik)
3*/
4
5/*
6 * Redistribution and use in source and binary
7 * forms, with or without modification, are permitted
8 * provided that the following conditions are met:
9 *
10 * 1. Redistributions of source code must retain the
11 * above copyright notice, this list of conditions
12 * and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the
14 * above copyright notice, this list of conditions
15 * and the following disclaimer in the documentation
16 * and/or other materials provided with the
17 * distribution.
18 * 3. The name of the author may not be used to endorse
19 * or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
24 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
27 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
33 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
35 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36*/
37
6f1a15d9
JF
38/* .clearfix {{{ */
39.clearfix:after {
40 content: ".";
41 display: block;
42 clear: both;
43 visibility: hidden;
44 line-height: 0;
45 height: 0;
46}
47
48.clearfix {
6f1a15d9
JF
49 display: block;
50}
6f1a15d9
JF
51/* }}} */
52
53* {
680eb135
JF
54 border: 0;
55 -webkit-border-radius: 0;
6f1a15d9
JF
56 box-sizing: border-box;
57 -moz-box-sizing: border-box;
9dd60d81
JF
58 -ms-box-sizing: border-box;
59 -webkit-box-sizing: border-box;
680eb135
JF
60 font-family: inherit;
61 font-size: 100%;
62 font-style: inherit;
63 font-weight: inherit;
64 margin: 0;
65 outline: 0;
66 padding: 0;
9dd60d81 67 text-decoration: none;
680eb135
JF
68 vertical-align: baseline;
69}
70
9dd60d81
JF
71a {
72 color: inherit;
73}
74
fd7853a6
JF
75sup {
76 font-size: smaller;
77 margin-top: -6px;
78 position: relative;
79 top: -6px;
80}
81
680eb135
JF
82select {
83 border: 1px solid #999999;
6f1a15d9
JF
84}
85
86body {
da0410f1 87 width: 320px;
6f1a15d9 88 font-family: Helvetica;
6f1a15d9
JF
89 -webkit-text-size-adjust: none;
90 -webkit-user-select: none;
91}
92
aa5d0de7
JF
93body.white {
94 background-color: #ffffff;
95}
96
680eb135 97body.pinstripe {
fe468f45 98 background: #c7ced5 url(cydia://uikit-image/UIPinstripe.png);
6f1a15d9
JF
99}
100
680eb135
JF
101dialog {
102 display: block;
6f1a15d9
JF
103 position: absolute;
104 width: 100%;
105}
106
680eb135
JF
107dialog > panel {
108 display: block;
6f1a15d9
JF
109}
110
680eb135
JF
111a {
112 color: blue;
9dd60d81 113 text-underline-style: dotted;
680eb135
JF
114}
115
6f1a15d9
JF
116strong {
117 font-weight: bold
118}
119
680eb135
JF
120pre, tt {
121 font-family: monospace;
122}
123
affeffc7
JF
124pre {
125 letter-spacing: -2px;
126}
127
63cdf60f
JF
128em {
129 font-style: italic;
130}
131
fd7853a6
JF
132.default {
133 color: #aaaabb;
134}
135
6f1a15d9 136/* #toolbar {{{ */
680eb135 137dialog > toolbar {
6f1a15d9
JF
138 background: url(toolbar.png) #6d84a2 repeat-x;
139 border-bottom: 1px solid #2d3642;
140 height: 45px;
141 padding: 10px;
142}
143
680eb135 144dialog > toolbar > h1 {
6f1a15d9
JF
145 color: #ffffff;
146 font-size: 20px;
147 font-weight: bold;
148 height: 100%;
149 margin: 1px auto 0 auto;
150 text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0;
151 text-align: center;
152 white-space: nowrap;
153}
154/* }}} */
155/* (back|forward)-button {{{ */
680eb135
JF
156dialog > toolbar > a.back-button,
157dialog > toolbar > a.forward-button {
6f1a15d9
JF
158 color: #ffffff;
159 font-size: 12px;
160 font-weight: bold;
161 height: 30px;
162 line-height: 30px;
163 margin-top: -28px;
164 padding: 0 3px;
165 text-decoration: none;
166 text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;
167 white-space: nowrap;
168}
169
680eb135 170dialog > toolbar > a.back-button {
6f1a15d9
JF
171 -webkit-border-image: url(backButton.png) 0 8 0 14;
172 border-width: 0 8px 0 14px;
173 float: left;
174}
175
680eb135 176dialog > toolbar > a.forward-button {
6f1a15d9
JF
177 -webkit-border-image: url(toolButton.png) 0 5 0 5;
178 border-width: 0 5px;
179 float: right;
180}
181/* }}} */
59c6ae22 182
aa5d0de7 183panel > block {
3bd1c2a2
JF
184 /*background-color: #ccd1d5;*/
185 /*background-color: white;*/
186 /*background-color: #c7ced5;*/
187 background-color: transparent;
188 //background-color: #ffffff;
9487f027
JF
189 border-bottom: 1px solid #999999;
190 border-top: 1px solid #999999;
3bd1c2a2
JF
191 border-left: 1px dotted #999999;
192 border-right: 1px dotted #999999;
193 -webkit-border-radius: 9px;
194 //border: 1px solid #999999;
9487f027
JF
195 display: block;
196 font-size: 16px;
197 margin: 9px 10px;
198 padding: 0 10px;
199}
200
aa5d0de7
JF
201panel > fieldset > div > hr,
202panel > block > hr {
63cdf60f 203 border-top: 1px dashed #999999;
9487f027
JF
204}
205
aa5d0de7 206panel > fieldset {
9487f027 207 background-color: #ffffff;
6f1a15d9 208 border: 1px solid #999999;
189a73d0 209 -webkit-border-radius: 9px;
6f1a15d9
JF
210 font-size: 16px;
211 margin: 9px;
6f1a15d9
JF
212}
213
aa5d0de7 214panel > input[type="submit"] {
fd7853a6
JF
215 /*-webkit-border-image: url(whiteButton.png) 0 12 0 12;
216 -webkit-border-radius: 0;
217 border-width: 0px 12px;*/
218 border: none;
219 color: #000000;
220 display: block;
221 font-size: 20px;
222 font-weight: bold;
223 margin: 9px;
224 height: 44px;
225 padding: 10px;
226 text-align: center;
227 width: 302px;
228}
229
aa5d0de7
JF
230list > label {
231 background: #a7b3bc url(cydia://uikit-image/UISectionListHeaderBackground.png);
232 background-repeat: repeat-x no-repeat-y;
da0410f1 233 margin-bottom: 0px;
aa5d0de7
JF
234 padding: 4px 15px 1px 15px;
235 display: block;
236 color: white;
237 font-size: inherit;
238 font-weight: bold;
239 text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 0;
240}
241
242panel > label {
6f1a15d9 243 display: block;
189a73d0 244 margin: 13px 0 -4px 24px;
6f1a15d9
JF
245 line-height: 24px;
246 font-size: inherit;
247 font-weight: bold;
248 color: #4d4d70;
249 text-shadow: rgba(255, 255, 255, 0.75) 1px 1px 0;
250}
251
da0410f1
JF
252panel > fieldset > a,
253panel > fieldset > div,
254panel > fieldset > textarea {
aa5d0de7
JF
255 border-bottom: 1px solid #999999;
256}
257
da0410f1
JF
258panel > fieldset > a.left:nth-last-child(2),
259panel > fieldset > a:last-child,
260panel > fieldset > div:last-child,
261panel > fieldset > textarea:last-child {
262 border-bottom: 0;
263}
264
aa5d0de7
JF
265list > fieldset > a,
266list > fieldset > div,
267list > fieldset > textarea {
268 border-bottom: 1px solid #e0e0e0;
269}
270
d061f4ba 271fieldset > a:not([type="ad"]),
680eb135
JF
272fieldset > div,
273fieldset > textarea {
189a73d0 274 /* XXX: small differences due to font bugs */
da0410f1 275 padding: 12px 14px 10px 14px;
6f1a15d9
JF
276}
277
da0410f1
JF
278/*fieldset > a:not([type="ad"]):last-child,
279fieldset > div:last-child {
280 padding-bottom: 10px;
281}*/
282
d061f4ba
JF
283fieldset > a[type="ad"] {
284 /* XXX: small differences due to font bugs */
285 padding: 4px 4px 2px 5px;
286}
287
288panel > fieldset > a[type="ad"]:first-child > div:first-of-type,
da0410f1
JF
289panel > fieldset > a[type="comment"]:first-child > div:first-of-type,
290panel > fieldset > a[type="profile"]:first-child > div:first-of-type,
d061f4ba 291panel > fieldset > a[type="thumb"]:first-child > div:first-of-type {
aa5d0de7
JF
292 -webkit-border-top-left-radius: 9px;
293}
294
d061f4ba 295panel > fieldset > a[type="ad"]:last-child > div:first-of-type,
da0410f1
JF
296panel > fieldset > a[type="comment"]:last-child > div:first-of-type,
297panel > fieldset > a[type="profile"]:last-child > div:first-of-type,
d061f4ba 298panel > fieldset > a[type="thumb"]:last-child > div:first-of-type {
aa5d0de7
JF
299 -webkit-border-bottom-left-radius: 9px;
300}
301
d061f4ba
JF
302fieldset > a[type="ad"] > div:first-of-type {
303 border: 1px solid #999999;
304}
305
da0410f1
JF
306list > fieldset > a[type="comment"] > div:first-of-type,
307list > fieldset > a[type="profile"] > div:first-of-type,
d061f4ba 308list > fieldset > a[type="thumb"] > div:first-of-type {
aa5d0de7
JF
309 border: 1px solid #e0e0e0;
310}
311
da0410f1
JF
312panel > fieldset > a[type="comment"] > div:first-of-type {
313 border: 1px solid #999999;
314 border-bottom-style: dashed;
315}
316
317panel > fieldset > a[type="profile"] > div:first-of-type,
3bd1c2a2 318panel > fieldset:not(.header) > a[type="thumb"] > div:first-of-type {
aa5d0de7
JF
319 border: 1px solid #999999;
320}
321
d061f4ba
JF
322div[tile] {
323 float: right;
324 height: 30px;
325 width: 30px;
326}
327
328div[tile="app"] { background-image: url(http://cache.saurik.com/cydia/tile/app.png); }
329div[tile="call"] { background-image: url(http://cache.saurik.com/cydia/tile/call.png); }
330div[tile="map"] { background-image: url(http://cache.saurik.com/cydia/tile/map.png); }
331div[tile="media"] { background-image: url(http://cache.saurik.com/cydia/tile/media.png); }
332div[tile="music"] { background-image: url(http://cache.saurik.com/cydia/tile/video.png); }
333div[tile="site"] { background-image: url(http://cache.saurik.com/cydia/tile/site.png); }
334
335fieldset > a[type="ad"] > div:first-of-type {
336 background-repeat: no-repeat;
337 background-position: center center;
338 border-right: none;
339 display: inline-block;
340 height: 40px;
341 line-height: 38px;
342 /* XXX: small differences due to font bugs */
343 /* XXX: 1px difference due to border stupidity */
344 margin: -5px 5px -3px -6px;
345 width: 40px;
346}
347
da0410f1
JF
348panel > fieldset > a[type="comment"] {
349 border-bottom-style: dashed;
350}
351
352fieldset > a[type="comment"] > div:first-of-type {
353 -webkit-background-size: 44px;
354 height: 44px;
355 width: 44px;
356}
357
3bd1c2a2
JF
358fieldset > a[type="header"] > div:first-of-type {
359 height: 64px;
360 width: 64px;
361}
362
da0410f1 363fieldset > a[type="profile"] > div:first-of-type {
3bd1c2a2 364 -webkit-background-size: 50px;
da0410f1
JF
365 height: 50px;
366 width: 50px;
367}
368
369fieldset > a[type="thumb"] > div:first-of-type {
370 height: 64px;
371 width: 64px;
372}
373
374fieldset > a[type="comment"] > div:first-of-type,
3bd1c2a2 375fieldset > a[type="header"] > div:first-of-type,
da0410f1 376fieldset > a[type="profile"] > div:first-of-type,
d061f4ba 377fieldset > a[type="thumb"] > div:first-of-type {
aa5d0de7
JF
378 background-repeat: no-repeat;
379 background-position: center center;
380 display: inline-block;
aa5d0de7
JF
381 /* XXX: small differences due to font bugs */
382 /* XXX: 1px difference due to border stupidity */
3bd1c2a2 383 margin: -13px 7px -11px -15px;
6f1a15d9
JF
384}
385
aa5d0de7
JF
386fieldset > a > img.icon,
387fieldset > div > img.icon {
6f1a15d9 388 height: auto;
189a73d0
JF
389 /* XXX: small differences due to font bugs */
390 margin: -7px 6px -9px -8px;
6f1a15d9
JF
391 max-height: 30px;
392 min-width: 30px;
6f1a15d9
JF
393 width: 30px;
394}
395
680eb135 396panel > block > p,
9dd60d81 397fieldset > div > p,
da0410f1 398panel > block > ul,
9dd60d81 399fieldset > div > ul {
7d2ac47f 400 margin: 11px 0;
6f1a15d9
JF
401}
402
da0410f1 403panel > block > ul,
680eb135 404fieldset > div > ul {
9dd60d81
JF
405 margin-left: 13px;
406}
407
408panel > block > p,
409fieldset > div > p {
410 text-align: center;
affeffc7
JF
411}
412
680eb135
JF
413fieldset > div > p:first-child,
414fieldset > div > ul:first-child {
6f1a15d9
JF
415 margin-top: 0;
416}
417
680eb135
JF
418fieldset > div > p:last-child,
419fieldset > div > ul:last-child {
7d2ac47f
JF
420 margin-bottom: 0;
421}
422
680eb135 423fieldset > a {
6f1a15d9
JF
424 color: inherit;
425 display: block;
426}
427
fd7853a6
JF
428fieldset > textarea,
429fieldset > div > input,
430fieldset > div > select {
680eb135 431 background: none;
fd7853a6
JF
432 -webkit-box-shadow: none;
433 -webkit-appearance: none;
680eb135
JF
434}
435
59c6ae22 436/* Chevrons {{{ */
aa5d0de7 437
d061f4ba 438fieldset > a[href]:not([type="ad"]),
189a73d0 439fieldset > div > select {
59c6ae22
JF
440 background-repeat: no-repeat;
441 background-image: url(chevron.png);
442 background-position-y: center;
189a73d0
JF
443}
444
59c6ae22
JF
445/* Horizontal */
446
447list > fieldset > a[href] {
fd7853a6
JF
448 background-position-x: 295px;
449}
450
59c6ae22 451panel > fieldset > a[href] {
fd7853a6
JF
452 background-position-x: 275px;
453}
454
da0410f1
JF
455panel > fieldset > a[href].half {
456 background-position-x: 125px;
457}
458
59c6ae22 459list > fieldset > a:not([href]) > select,
aa5d0de7 460list > fieldset > div > select {
da0410f1 461 background-position-x: 183px;
fd7853a6
JF
462}
463
59c6ae22 464panel > fieldset > a:not([href]) > select,
aa5d0de7 465panel > fieldset > div > select {
189a73d0 466 background-position-x: 163px;
680eb135
JF
467}
468
59c6ae22
JF
469/* }}} */
470
680eb135
JF
471fieldset > textarea,
472fieldset > div > input,
473fieldset > div > select,
aa5d0de7
JF
474fieldset > a > div > label:nth-of-type(2),
475fieldset > div > div > label:nth-of-type(2) {
6f1a15d9 476 color: #193250;
680eb135
JF
477}
478
479fieldset > textarea,
480fieldset > div > input,
481fieldset > div > select {
6f1a15d9 482 font-size: 16px;
680eb135
JF
483}
484
189a73d0
JF
485fieldset > div > input {
486 padding-left: 7px;
487 padding-right: 14px;
488}
489
fd7853a6 490fieldset > div > select,
680eb135
JF
491fieldset > div > input {
492 border: none;
189a73d0
JF
493 float: right;
494 height: 40px;
495 margin: -11px -13px -11px -14px;
680eb135
JF
496}
497
aa5d0de7
JF
498panel > fieldset > div > select,
499panel > fieldset > div > input {
fd7853a6 500 width: 187px;
6f1a15d9
JF
501}
502
aa5d0de7
JF
503list > fieldset > div > select,
504list > fieldset > div > input {
fd7853a6 505 width: 207px;
680eb135
JF
506}
507
fd7853a6 508fieldset > textarea {
6f1a15d9 509 padding: 10px;
fd7853a6 510 width: 320px;
6f1a15d9
JF
511}
512
189a73d0
JF
513fieldset > div > div,
514fieldset > a > div {
515 display: inline-block;
516}
517
518fieldset > div > div {
519 width: 273px;
520}
521
d061f4ba
JF
522fieldset > a[type="ad"] > div:nth-of-type(2) {
523 width: 218px;
524}
525
526fieldset > a:not([type]) > div {
189a73d0 527 width: 250px;
6f1a15d9
JF
528}
529
3bd1c2a2 530fieldset > a:not([href]) > img.icon + div,
189a73d0
JF
531fieldset > div > img.icon + div {
532 width: 244px;
533}
534
3bd1c2a2 535fieldset > a[href] > img.icon + div {
189a73d0
JF
536 width: 221px;
537}
538
da0410f1
JF
539fieldset > a[type="profile"] > div:nth-of-type(2) > label:nth-of-type(1).unknown {
540 color: #aaaabb;
541}
542
543fieldset > a[type="profile"] > div:nth-of-type(2) > label:only-of-type {
544 left: 4px;
545 position: relative;
546 top: 3px;
547}
548
d061f4ba 549fieldset > a[type="thumb"] > div:nth-of-type(2) > label:only-of-type {
aa5d0de7
JF
550 position: relative;
551 top: 10px;
552}
553
da0410f1
JF
554fieldset > a[type="profile"] > div:nth-of-type(2) > label:nth-of-type(2) {
555 display: block;
556 font-size: 13px;
557 margin-top: 2px;
558}
559
d061f4ba 560fieldset > a[type="thumb"] > div:nth-of-type(2) > label:nth-of-type(2) {
aa5d0de7
JF
561 display: block;
562 margin-top: 2px;
563}
564
da0410f1
JF
565fieldset > a[type="profile"] > div:nth-of-type(2) {
566 width: 207px;
567}
568
d061f4ba 569fieldset > a[type="thumb"] > div:nth-of-type(2) {
aa5d0de7
JF
570 width: 193px;
571}
572
da0410f1 573fieldset > a[type="profile"] > div:nth-of-type(2) {
3bd1c2a2 574 margin: -5px 0;
da0410f1
JF
575}
576
577fieldset > a[type="profile"] > div:nth-of-type(2),
578fieldset > a[type="thumb"] > div:nth-of-type(2) {
579 vertical-align: top;
580}
581
aa5d0de7
JF
582fieldset > a > label:first-of-type,
583fieldset > a > div > label:first-of-type,
584fieldset > div > label:first-of-type,
585fieldset > div > div > label:first-of-type {
189a73d0 586 font-weight: bold;
6f1a15d9
JF
587}
588
da0410f1 589/* XXX: this doesn't handle icon offsets */
d061f4ba 590list > fieldset > a:not([type]) > div > label:nth-of-type(2),
aa5d0de7 591list > fieldset > div > div > label:nth-of-type(2) {
680eb135
JF
592 margin-left: 94px;
593}
594
d061f4ba 595panel > fieldset > a:not([type]) > div > label:nth-of-type(2),
aa5d0de7 596panel > fieldset > div > div > label:nth-of-type(2) {
affeffc7 597 float: right;
6f1a15d9
JF
598 text-align: right;
599}
affeffc7 600
aa5d0de7 601panel > img {
affeffc7
JF
602 display: block;
603 margin: 9px auto 4px auto;
604 height: auto;
605 width: 300px;
606}
aa5d0de7 607
d061f4ba
JF
608fieldset > a[type="ad"] {
609}
610
611fieldset > a[type="ad"] > div:nth-of-type(2) {
612 position: relative;
613 vertical-align: top;
614}
615
616fieldset > a[type="ad"] > div > label:nth-of-type(1) {
617 color: #2d2d50;
618 font-size: 13px;
619 font-weight: bold;
620 line-height: 15px;
621}
622
623fieldset > a[type="ad"] > div > label:nth-of-type(2) {
624 position: absolute;
625 top: 17px;
626 left: 156px;
627 font-size: 9.5px;
628 font-weight: normal;
629}
630
da0410f1
JF
631panel > fieldset > a.right {
632 border-left: 1px solid #999999;
633}
634
635panel > fieldset > a.half {
636 display: inline-block;
637 width: 150px;
638}
639
d061f4ba
JF
640fieldset.half > a {
641 background: none;
642 background-position-x: 120px;
643}
644
645fieldset.half > a > img.icon + div {
646 width: 65px;
647}
648
649fieldset.right {
650 float: right;
651 margin-left: 10px;
652}
653
654block + fieldset.right,
655fieldset + fieldset.right {
656 margin-top: 0;
657}
658
659fieldset.half {
660 width: 146px;
661}
662
da0410f1
JF
663panel > fieldset.dashed > a,
664panel > fieldset.dashed > div,
665panel > fieldset.dashed > textarea,
666list > fieldset.dashed > a,
667list > fieldset.dashed > div,
668list > fieldset.dashed > textarea {
669 border-style: dashed;
670}
671
d061f4ba 672fieldset > a[type="thumb"]:first-child > back {
aa5d0de7
JF
673 -webkit-border-top-right-radius: 9px;
674}
675
d061f4ba 676fieldset > a[type="thumb"]:last-child > back {
aa5d0de7
JF
677 -webkit-border-bottom-right-radius: 9px;
678}
679
d061f4ba 680fieldset > a[type="thumb"] > back {
aa5d0de7
JF
681 background-repeat: no-repeat;
682 border: 1px solid #999999;
683 display: block;
684 height: 64px;
685 left: 62px;
686 position: absolute;
687 opacity: 0.2;
688 top: -1px;
689 width: 237px;
690}
da0410f1
JF
691
692.mm {
693 border: 1px solid #999999;
694 -webkit-border-radius: 9px;
695}
696
697a.mm {
698 display: block;
699 margin: 9px;
700}
701
702div.mm img {
703 height: auto;
704 width: 300px;
705}
706
707fieldset > a.small {
708 font-size: 12px;
709 padding-top: 9px;
710}
711
712fieldset > a.small label {
713 display: inline-block;
714 position: relative;
715 top: 1px;
716}
717
718fieldset > a.small > img.icon {
719 max-height: 22px;
720 min-width: 22px;
721 width: 22px;
722}
723
724fieldset > a.small.half > img.icon + div {
725 width: 79px;
726}
727
728panel.centered > label {
729 margin-left: 0px;
730 margin-right: 0px;
731 text-align: center;
732}
733
734panel > iframe {
3bd1c2a2
JF
735 margin: -9px 0;
736}
737
738panel > iframe + iframe {
739 margin-top: 0;
da0410f1
JF
740}
741
742/* Rating Stars {{{ */
743.ratings {
744 margin: -2px 0;
745 text-align: center;
746}
747
748.rated {
749 display: inline-block;
750}
751
752.rated.left {
753 margin-right: 9px;
754}
755
756.rated label {
757 font-weight: bold;
758 margin-right: 3px;
759 position: relative;
760 top: -3px;
761}
762
763.rating {
764 display: inline-block;
765 width: 80px;
766}
767
768.rating .back,
769.rating .fore,
770.rating .star {
771 background: url(http://cache.saurik.com/crystal/16x16/actions/knewstuff.png);
772 height: 16px;
773}
774
775.rating .back,
776.rating .fore {
777 width: 80px;
778}
779
780.rating .star {
781 display: inline-block;
782 width: 16px;
783}
784
785.rating .back {
786 opacity: 0.2;
787}
788
789.rating .fore {
790 /*border-right: 1px solid #999999;*/
791 position: absolute;
792}
793/* }}} */
3bd1c2a2
JF
794
795panel > fieldset.header {
796 background-color: transparent;
797 border: none;
798 margin: -5px 0 -11px 0;
799}
800
801panel > fieldset.header > a > div > label {
802 color: #4d4d70;
803 text-shadow: rgba(255, 255, 255, 0.75) 1px 1px 0;
804}