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.
60 lines (59 loc) • 1.15 kB
CSS
/* dojox.mobile.ComboBox */
.dijitPopup.mblComboBoxMenuPopup {
margin: 0;
padding: 0;
position: absolute;
border: 0;
background-color: transparent;
-webkit-box-shadow: 0 0 50px #000000;
box-shadow: 0 0 50px #000000;
border-radius: 0;
}
.dijitPopup.mblComboBoxMenuPopup .dijitBackgroundIframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: -1;
border: 0;
padding: 0;
margin: 0;
}
.mblReset {
margin: 0;
padding: 0;
border: 0;
line-height: normal;
font: inherit;
color: inherit;
}
.mblComboBoxMenu {
position: relative;
overflow-y: hidden ;
overflow: hidden;
border: 1px solid black;
border-radius: 0;
background-color: #333333;
color: #ffffff;
}
.mblComboBoxMenuItem {
padding: .1em .2em;
border-width: 1px 0 1px 0;
border-style: solid;
text-align: left;
white-space: nowrap;
border-color: #4f4f4f;
border-top: none;
height: 35px;
padding-top: 17px;
}
.mblComboBoxMenuItemSelected {
background-color: #3578b1;
color: white;
}
.mblComboBoxMenuPreviousButton,
.mblComboBoxMenuNextButton {
font-style: italic;
overflow: hidden;
}