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