summaryrefslogtreecommitdiff
path: root/js/dojo-1.6/dojox/form/resources/CheckedMultiSelect.css
blob: 311f8f083ccbcf0b919ebb5628d1246d2d3833a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
**----------------------------------------------------------------------------
**  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_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;
}

/*
**----------------------------------------------------------------------------
**  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;
}

/*
**----------------------------------------------------------------------------
**  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('../../../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;
}