Making sure variable types are consistant, fixing global vars, various style fixes, etc. Change-Id: I2f30fe07078aa3cadd730b0d6f199d037f2a4612
39 lines
1 KiB
CSS
39 lines
1 KiB
CSS
.mw-badge {
|
|
min-width: 8px;
|
|
height: 14px;
|
|
border: 1px solid white;
|
|
-moz-border-radius: 8px;
|
|
-webkit-border-radius: 8px;
|
|
border-radius: 8px;
|
|
-moz-box-shadow: 0px 1px 4px #ccc;
|
|
-webkit-box-shadow: 0px 1px 4px #ccc;
|
|
box-shadow: 0px 1px 4px #ccc;
|
|
background-color: #b60a00;
|
|
background-image: -o-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
|
|
background-image: -moz-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
|
|
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #a70802), color-stop(1, #cf0e00));
|
|
background-image: -webkit-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
|
|
background-image: -ms-linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
|
|
background-image: linear-gradient(bottom, #a70802 0%, #cf0e00 100%);
|
|
padding: 0 3px;
|
|
text-align: center;
|
|
}
|
|
|
|
.mw-badge-content {
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
color: white;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.mw-badge-inline {
|
|
display: inline-block;
|
|
margin-left: 3px;
|
|
}
|
|
|
|
.mw-badge-overlay {
|
|
position: absolute;
|
|
bottom: -1px;
|
|
right: -3px;
|
|
z-index: 50;
|
|
}
|