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.
47 lines
1.5 KiB
47 lines
1.5 KiB
/* Make unselected content portion "look" more like a text box and less like a button */ |
|
.tundra .dijitSelectError .dijitButtonContents, |
|
.tundra .dijitSelectHover .dijitArrowButton, |
|
.tundra .dijitSelectActive .dijitArrowButton, |
|
.tundra .dijitSelectOpened .dijitArrowButton, |
|
.tundra .dijitSelectDisabled .dijitArrowButton, |
|
.tundra .dijitSelectReadOnly .dijitArrowButton { |
|
background: transparent none; |
|
} |
|
.tundra .dijitSelect .dijitArrowButton { |
|
background: #fff url("../images/buttonEnabled.png") repeat-x bottom left; |
|
border-width: 0; |
|
} |
|
|
|
/* Mirror DropDownButton */ |
|
.tundra .dijitSelectDisabled, |
|
.tundra .dijitSelectDisabled TD { |
|
border-color: #d5d5d5 #bdbdbd #bdbdbd #d5d5d5 !important; |
|
background:#e4e4e4 url("../images/buttonDisabled.png") top repeat-x; |
|
} |
|
.dj_ie .tundra .dijitSelectDisabled TD * { |
|
filter: gray() alpha(opacity=50); |
|
} |
|
|
|
.tundra .dijitSelectHover, |
|
.tundra .dijitSelectHover TD { |
|
border-color:#a5beda #5c7590 #5c7590 #a5beda !important; |
|
color:#243C5F; |
|
background:#fcfdff url("../images/buttonHover.png") repeat-x bottom; |
|
} |
|
|
|
.tundra .dijitSelectActive, |
|
.tundra .dijitSelectOpened, |
|
.tundra .dijitSelectActive TD, |
|
.tundra .dijitSelectOpened TD { |
|
border-color:#366dba !important; |
|
background: #ededed url("../images/buttonActive.png") bottom repeat-x; |
|
} |
|
|
|
/* Make the menu look more combobox-like */ |
|
.tundra .dijitSelectMenu td { |
|
padding: 0; |
|
} |
|
.tundra .dijitSelectMenu .dijitMenuItemLabel, |
|
.tundra .dijitSelectMenu .dijitMenuArrowCell { |
|
padding: 0.1em 0.2em; |
|
}
|
|
|