100 lines
2.6 KiB
CSS
100 lines
2.6 KiB
CSS
|
/*
|
||
|
**----------------------------------------------------------------------------
|
||
|
** CheckedMultiSelect
|
||
|
**----------------------------------------------------------------------------
|
||
|
*/
|
||
|
.dojoxMultiSelectSelect { display: none; }
|
||
|
|
||
|
.dojoxMultiSelect {
|
||
|
border: solid black 1px;
|
||
|
margin: 1px 0;
|
||
|
overflow: scroll;
|
||
|
overflow-y: scroll;
|
||
|
overflow-x: hidden;
|
||
|
height: 100px;
|
||
|
}
|
||
|
|
||
|
.dj_ie .dojoxMultiSelect,
|
||
|
.dj_safari .dojoxMultiSelect {
|
||
|
/* So that the scroll bar doesn't cover stuff up */
|
||
|
padding-right: 15px;
|
||
|
}
|
||
|
|
||
|
.dojoxMultiSelectItem {
|
||
|
white-space: nowrap;
|
||
|
padding:.1em .2em;
|
||
|
cursor:default;
|
||
|
}
|
||
|
|
||
|
.dojoxMultiSelectDisabled * {
|
||
|
color:gray !important;
|
||
|
}
|
||
|
|
||
|
.dojoxMultiSelectItemLabel {
|
||
|
margin-left: .2em;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
**----------------------------------------------------------------------------
|
||
|
** Tundra theme (make look similar to text box)
|
||
|
**----------------------------------------------------------------------------
|
||
|
*/
|
||
|
.tundra .dojoxMultiSelect {
|
||
|
margin: 0em 0.1em;
|
||
|
}
|
||
|
|
||
|
.tundra .dojoxMultiSelect {
|
||
|
background:#fff url("../../../dijit/themes/tundra/images/validationInputBg.png") repeat-x top left;
|
||
|
#background:#fff url('../../../dijit/themes/tundra/images/validationInputBg.gif') repeat-x top left;
|
||
|
border:1px solid #b3b3b3;
|
||
|
line-height: normal;
|
||
|
}
|
||
|
|
||
|
.tundra .dojoxMultiSelectFocused {
|
||
|
/* input field when focused (ie: typing affects it) */
|
||
|
border-color:#406b9b;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
**----------------------------------------------------------------------------
|
||
|
** Soria theme (make look similar to text box)
|
||
|
**----------------------------------------------------------------------------
|
||
|
*/
|
||
|
.soria .dojoxMultiSelect {
|
||
|
margin: 0em 0.1em;
|
||
|
}
|
||
|
|
||
|
.soria .dojoxMultiSelect {
|
||
|
background:#fff url("../../../dijit/themes/soria/images/validationInputBg.png") repeat-x top left;
|
||
|
#background:#fff url('../../../dijit/themes/soria/images/validationInputBg.gif') repeat-x top left;
|
||
|
border:1px solid #8ba0bd;
|
||
|
line-height: normal;
|
||
|
}
|
||
|
|
||
|
.soria .dojoxMultiSelectFocused {
|
||
|
/* input field when focused (ie: typing affects it) */
|
||
|
border-color:#406b9b;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
**----------------------------------------------------------------------------
|
||
|
** Nihilo theme (make look similar to text box)
|
||
|
**----------------------------------------------------------------------------
|
||
|
*/
|
||
|
.nihilo .dojoxMultiSelect {
|
||
|
margin: 0em 0.1em;
|
||
|
}
|
||
|
|
||
|
.nihilo .dojoxMultiSelect {
|
||
|
background:#fff url("../../../dijit/themes/nihilo/images/validationInputBg.png") repeat-x top left;
|
||
|
#background:#fff url('../../../dijit/themes/nihilo/images/validationInputBg.gif') repeat-x top left;
|
||
|
border:1px solid #d3d3d3;
|
||
|
line-height: normal;
|
||
|
}
|
||
|
|
||
|
.nihilo .dojoxMultiSelectFocused {
|
||
|
/* input field when focused (ie: typing affects it) */
|
||
|
border-color:#b3b3b3;
|
||
|
}
|
||
|
|