/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 25/10/2020, 15:53:31 from original dojox/form/resources/CheckedMultiSelect.css
    Author     : AtoCarlos
*/

/*
**----------------------------------------------------------------------------
**  CheckedMultiSelect
**----------------------------------------------------------------------------
*/
.dojoxMultiSelectSelect { display: none; }

.dojoxMultiSelect {
	border: solid black 1px;
	margin: 1px 0;
	overflow: scroll; 
	overflow-y: scroll; 
	overflow-x: hidden; 
	height: 100px;
    background-color: yellowgreen;
}

.dj_ie .dojoxMultiSelect,
.dj_webkit .dojoxMultiSelect {
	/* So that the scroll bar doesn't cover stuff up */
	padding-right: 15px;
}

.dojoxMultiSelectItem {
	white-space: nowrap;
	padding:.1em .2em;
	cursor:default;
}

.dojoxMultiSelectDisabled *,
.dojoxMultiSelectReadOnly * {
	color:gray !important;
}

.dojoxMultiSelectItemLabel {
	margin-left: .2em;
}
/*
**----------------------------------------------------------------------------
**  Claro theme (make look similar to text box)
**----------------------------------------------------------------------------
*/

.claro .dojoxMultiSelect {
	margin: 0em 0.1em;
}

.claro .dojoxMultiSelect {
	border: 1px solid #b5bcc7;
	background-color: #f7fcff;
	line-height: normal;
	-webkit-transition-property:background-color, border;
 	-webkit-transition-duration:.35s;
}

.claro .dojoxMultiSelectHover {
	border-color: #769dc0;
	background-color: #e9f4fe;
	background-image: url('../js/dijit/themes/claro/form/images/textBox_back.png');
	background-repeat: repeat-x;
	-webkit-transition-duration:.25s;
}

.claro .dojoxMultiSelectFocused {
	border: 1px solid #769dc0;
	-webkit-transition-duration:.1s;
}
