dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
30 lines (29 loc) • 823 B
CSS
/* === Blue Badge ==*/
.mblDomButtonBlueBadge {
position: relative;
width: 29px;
height: 29px;
text-align: right;
font-family: Helvetica;
font-size: 16px;
font-weight: bold;
}
.mblDomButtonBlueBadge > div {
position: absolute;
display: inline;
padding: 0px 5px;
top: 2px;
right: 2px;
color: white;
border: 2px solid white;
border-radius: 12px;
text-align: center;
background: -webkit-gradient(linear, left top, left bottom, from(#6ba2e7), to(#216dd6), color-stop(0.5, #4282de), color-stop(0.5, #216dd6));
background: linear-gradient(to bottom, #6ba2e7 0%, #4282de 50%, #216dd6 50%, #216dd6 100%);
background-clip: padding-box;
-webkit-box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
box-shadow: 2px 3px 2px rgba(0, 0, 0, 0.5);
}
.mblDomButtonBlueBadge > div > div {
display: none;
}