Merge "RCFilters: refactor highlight state"
[lhc/web/wiklou.git] / resources / src / jquery / jquery.badge.css
1 .mw-badge {
2 background-color: #72777d;
3 min-width: 7px;
4 border-radius: 2px;
5 padding: 1px 4px;
6 text-align: center;
7 font-size: 12px;
8 line-height: 12px;
9 cursor: pointer;
10 }
11
12 .mw-badge-content {
13 font-weight: bold;
14 color: #fff;
15 vertical-align: baseline;
16 }
17
18 .mw-badge-inline {
19 margin-left: 3px;
20 display: inline-block;
21 /* Hack for IE6 and IE7 (T49926) */
22 zoom: 1;
23 *display: inline; /* stylelint-disable-line declaration-block-no-duplicate-properties */
24
25 }
26 .mw-badge-overlay {
27 position: absolute;
28 bottom: -1px;
29 right: -3px;
30 z-index: 50;
31 }
32
33 .mw-badge-important {
34 background-color: #d33;
35 }