Merge "mediawiki.htmlform: Preserve classes added by HTMLForm's cssclass option"
[lhc/web/wiklou.git] / resources / jquery / jquery.badge.css
1 .mw-badge {
2 min-width: 7px;
3 -moz-border-radius: 2px;
4 -webkit-border-radius: 2px;
5 border-radius: 2px;
6 padding: 1px 4px;
7 text-align: center;
8 font-size: 12px;
9 line-height: 12px;
10 background-color: #d2d2d2;
11 cursor: pointer;
12 }
13
14 .mw-badge-content {
15 font-weight: bold;
16 color: white;
17 vertical-align: baseline;
18 text-shadow: 0 1px rgba(0, 0, 0, 0.4);
19 }
20
21 .mw-badge-inline {
22 margin-left: 3px;
23 display: inline-block;
24 /* Hack for IE6 and IE7 (bug 47926) */
25 zoom: 1;
26 *display: inline;
27
28 }
29 .mw-badge-overlay {
30 position: absolute;
31 bottom: -1px;
32 right: -3px;
33 z-index: 50;
34 }
35
36 .mw-badge-important {
37 background-color: #cc0000;
38 }
39