blob: fa7ea70279db9b8d315781ac60fe24cb304b4b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
.mw-badge {
min-width: 7px;
border-radius: 2px;
padding: 1px 4px;
text-align: center;
font-size: 12px;
line-height: 12px;
background-color: #d2d2d2;
cursor: pointer;
}
.mw-badge-content {
font-weight: bold;
color: white;
vertical-align: baseline;
text-shadow: 0 1px rgba(0, 0, 0, 0.4);
}
.mw-badge-inline {
margin-left: 3px;
display: inline-block;
/* Hack for IE6 and IE7 (bug 47926) */
zoom: 1;
*display: inline;
}
.mw-badge-overlay {
position: absolute;
bottom: -1px;
right: -3px;
z-index: 50;
}
.mw-badge-important {
background-color: #cc0000;
}
|