Merge "Fixed dependencies for jquery.collapsibleTabs"
[lhc/web/wiklou.git] / resources / jquery / jquery.badge.css
1 .mw-badge {
2 min-width: 8px;
3 height: 14px;
4 border: 1px solid white;
5 -moz-border-radius: 8px;
6 -webkit-border-radius: 8px;
7 border-radius: 8px;
8 -moz-box-shadow: 0px 1px 4px #ccc;
9 -webkit-box-shadow: 0px 1px 4px #ccc;
10 box-shadow: 0px 1px 4px #ccc;
11 background-color: #b60a00;
12 background-image: -o-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
13 background-image: -moz-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
14 background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #a70802), color-stop(1, #cf0e00));
15 background-image: -webkit-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
16 background-image: -ms-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
17 background-image: linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
18 padding: 0 3px;
19 text-align: center;
20 }
21
22 .mw-badge-content {
23 font-size: 12px;
24 line-height: 14px;
25 color: white;
26 vertical-align: top;
27 }
28
29 .mw-badge-inline {
30 display: inline-block;
31 margin-left: 3px;
32 }
33
34 .mw-badge-overlay {
35 position: absolute;
36 bottom: -1px;
37 right: -3px;
38 z-index: 50;
39 }