summaryrefslogtreecommitdiff
path: root/lib/dijit/themes/claro/form/Select.less
blob: 0e742611217a6628c99329cea9b0a890c15e87fe (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
/* Select
 * 
 * Styling Select mainly includes:
 * 
 * 1. Containers
 * 		.dijitSelect - for border, background-color
 * 		.dijitButtonContents - for border
 *
 * 2. Arrow
 * 		.dijitArrowButton - for border, padding and background-color|image
 * 		.dijitArrowButtonInner - for border, background-color|image, display and width|height
 * 
 * 3. Menu
 * 		.dijitSelectMenu .* - for border, padding
 * 
 * 4. Various states
 * 		.dijitSelectHover|.dijitSelectFocused|.dijitSelectDisabled .* - for border, padding and background-color|image 
 */

@import "../variables";

.claro .dijitSelect .dijitButtonText {
	padding: @textbox-padding;
}

/* normal status */
.claro .dijitSelect {
	border: 1px solid @border-color;
	background-color: @textbox-background-color;
	border-collapse: separate;
}
.dj_ie6 .claro .dijitSelect,
.dj_ie6 .claro .dijitSelect .dijitButtonNode {
	background-image:none;
}

.claro .dijitSelect .dijitButtonContents {
	border: 0 solid @border-color;
	border-right-width: 1px;
}

.claro .dijitSelect .dijitArrowButton {
	padding: 0;
	border: 1px solid @arrowbutton-inner-border-color;
	border-top:none;
	background-color: @arrowbutton-background-color;
	background-image: url("../@{image-form-highlight}");
	background-repeat:repeat-x;
}

.claro .dijitSelect .dijitArrowButton .dijitArrowButtonInner {
	background-image: url("../@{image-form-common-arrows}");
	background-position:-35px 70%;
	background-repeat: no-repeat;
	width:16px;
	height:16px;
}

/* hover status */
.claro .dijitSelectHover {
	border: 1px solid @hovered-border-color;
	background-color: @textbox-hovered-background-color;
	background-image: url("../@{image-form-textbox-background}");
	background-repeat: repeat-x;
}

.claro .dijitSelectHover .dijitButtonContents {
	border-color:@hovered-border-color;
}

.claro .dijitSelectHover .dijitArrowButton {
	background-color:@arrowbutton-hovered-background-color;
}
.claro .dijitSelectHover .dijitArrowButton .dijitArrowButtonInner {
	background-position:-70px 70%;
}

/* focused status */
.claro .dijitSelectFocused {
	border: 1px solid @focused-border-color;
}
.claro .dijitSelectFocused .dijitButtonContents {
	border-color:@focused-border-color;
}
.claro .dijitSelectFocused .dijitArrowButton {
	background-color:#7dbefa;		// TODO.  Mailed Jason about inconsistent ComboBox/Spinner behavior.
	background-position:0 -177px;
	border: none;
	padding: 0 1px;
}
.claro .dijitSelectFocused .dijitArrowButton .dijitArrowButtonInner {
	background-position:-70px 70%;
	margin-bottom: 1px;
}

/* disable status */
.claro .dijitSelectDisabled {
	border: 1px solid @disabled-border-color;
	background-color: @disabled-background-color;
	background-image: none;
	color: @disabled-text-color;
}
.claro .dijitSelectDisabled .dijitArrowButton { 
	background-color: @disabled-background-color;
}
.claro .dijitSelectDisabled .dijitArrowButton .dijitArrowButtonInner {
	background-position:0 70%
}

/* Dropdown menu style for select */

.claro .dijitSelectMenu td.dijitMenuItemIconCell,
.claro .dijitSelectMenu td.dijitMenuArrowCell { 
	/* so that arrow and icon cells from MenuItem are not displayed */
	display: none;  
}
.claro .dijitSelectMenu td.dijitMenuItemLabel {
	/* line up menu text with text in select box (in LTR and RTL modes) */
	padding: @textbox-padding;
}

.claro .dijitSelectMenu .dijitMenuSeparatorTop {
	border-bottom:1px solid @focused-border-color;
}