You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
57 lines
1.2 KiB
/* dojox.mobile.ComboBox */ |
|
.dijitPopup.mblComboBoxMenuPopup { |
|
margin: 0; |
|
padding: 0; |
|
position: absolute; |
|
border: 0; |
|
background-color: transparent; |
|
-webkit-box-shadow: none; |
|
box-shadow: none; |
|
border-radius: 12px; |
|
} |
|
.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 !important; |
|
overflow: hidden; |
|
border: 1px solid black; |
|
border-radius: 12px; |
|
background-color: black; |
|
} |
|
.mblComboBoxMenuItem { |
|
padding: .1em .2em; |
|
border-width: 1px 0 1px 0; |
|
border-style: solid; |
|
text-align: left; |
|
white-space: nowrap; |
|
border-color: black; |
|
color: white; |
|
} |
|
.mblComboBoxMenuItemSelected { |
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#088eef), to(#0851ad), color-stop(0.5, #0869c6)); |
|
background-image: linear-gradient(to bottom, #088eef 0%, #0869c6 50%, #0851ad 100%); |
|
color: white; |
|
} |
|
.mblComboBoxMenuPreviousButton, |
|
.mblComboBoxMenuNextButton { |
|
font-style: italic; |
|
overflow: hidden; |
|
}
|
|
|