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.
31 lines (30 loc) • 931 B
CSS
/* === Silver Circle Orange Button ==*/
.mblDomButtonSilverCircleOrangeButton {
position: relative;
width: 30px;
height: 30px;
}
.mblDomButtonSilverCircleOrangeButton > div {
position: relative;
top: 0px;
left: 0px;
width: 26px;
height: 26px;
border: 1px solid #b5b6b5;
border-radius: 13px;
-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#c2c2c2));
background: linear-gradient(to bottom, #efefef 0%, #c2c2c2 100%);
}
.mblDomButtonSilverCircleOrangeButton > div > div {
position: relative;
top: 6px;
left: 6px;
width: 12px;
height: 12px;
border: 1px inset #ca701a;
border-radius: 7px;
background: -webkit-gradient(radial, center center, 0, center center, 6, from(#ff7a07), to(#e66b03));
background: radial-gradient(6px at center, #ff7a07 0%, #e66b03 100%);
}