Merge "Adding ability of jQuery badge to display the number zero if requested."
[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 -moz-box-shadow: 0px 1px 4px #ccc;
7 -webkit-box-shadow: 0px 1px 4px #ccc;
8 box-shadow: 0px 1px 4px #ccc;
9 padding: 0 3px;
10 text-align: center;
11 font-size: 12px;
12 line-height: 12px;
13 }
14
15 .mw-badge-content {
16 font-weight: bold;
17 color: white;
18 vertical-align: baseline;
19 text-shadow: 0 1px rgba(0, 0, 0, 0.4);
20 }
21
22 .mw-badge-inline {
23 display: inline-block;
24 margin-left: 3px;
25 }
26 .mw-badge-overlay {
27 position: absolute;
28 bottom: -1px;
29 right: -3px;
30 z-index: 50;
31 }
32
33 .mw-badge-red {
34 background-color: #cc0000;
35 }
36 .mw-badge-grey {
37 background-color: #d2d2d2;
38 }