chosen-rails_ffcrm 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +19 -0
- data/README.md +47 -0
- data/Rakefile +11 -0
- data/chosen-rails_ffcrm.gemspec +23 -0
- data/lib/chosen-rails.rb +11 -0
- data/lib/chosen-rails/engine.rb +6 -0
- data/lib/chosen-rails/railtie.rb +6 -0
- data/lib/chosen-rails/source_file.rb +42 -0
- data/lib/chosen-rails/version.rb +6 -0
- data/vendor/assets/images/chosen-sprite.png +0 -0
- data/vendor/assets/javascripts/chosen-jquery.js +3 -0
- data/vendor/assets/javascripts/chosen-prototype.js +3 -0
- data/vendor/assets/javascripts/chosen.jquery.coffee +574 -0
- data/vendor/assets/javascripts/chosen.proto.coffee +580 -0
- data/vendor/assets/javascripts/lib/abstract-chosen.coffee +110 -0
- data/vendor/assets/javascripts/lib/select-parser.coffee +51 -0
- data/vendor/assets/stylesheets/chosen.css.sass +361 -0
- metadata +145 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
###
|
2
|
+
Chosen source: generate output using 'cake build'
|
3
|
+
Copyright (c) 2011 by Harvest
|
4
|
+
###
|
5
|
+
root = this
|
6
|
+
|
7
|
+
class AbstractChosen
|
8
|
+
|
9
|
+
constructor: (@form_field, @options={}) ->
|
10
|
+
this.set_default_values()
|
11
|
+
|
12
|
+
@is_multiple = @form_field.multiple
|
13
|
+
@default_text_default = if @is_multiple then "Select Some Options" else "Select an Option"
|
14
|
+
|
15
|
+
this.setup()
|
16
|
+
|
17
|
+
this.set_up_html()
|
18
|
+
this.register_observers()
|
19
|
+
|
20
|
+
this.finish_setup()
|
21
|
+
|
22
|
+
set_default_values: ->
|
23
|
+
@click_test_action = (evt) => this.test_active_click(evt)
|
24
|
+
@activate_action = (evt) => this.activate_field(evt)
|
25
|
+
@active_field = false
|
26
|
+
@mouse_on_container = false
|
27
|
+
@results_showing = false
|
28
|
+
@result_highlighted = null
|
29
|
+
@result_single_selected = null
|
30
|
+
@allow_single_deselect = if @options.allow_single_deselect? and @form_field.options[0].text == "" then @options.allow_single_deselect else false
|
31
|
+
@on_option_add = @options.on_option_add
|
32
|
+
@on_option_remove = @options.on_option_remove
|
33
|
+
@disable_search_threshold = @options.disable_search_threshold || 0
|
34
|
+
@choices = 0
|
35
|
+
@results_none_found = @options.no_results_text or "No results match"
|
36
|
+
|
37
|
+
mouse_enter: -> @mouse_on_container = true
|
38
|
+
mouse_leave: -> @mouse_on_container = false
|
39
|
+
|
40
|
+
input_focus: (evt) ->
|
41
|
+
setTimeout (=> this.container_mousedown()), 50 unless @active_field
|
42
|
+
|
43
|
+
input_blur: (evt) ->
|
44
|
+
if not @mouse_on_container
|
45
|
+
@active_field = false
|
46
|
+
setTimeout (=> this.blur_test()), 100
|
47
|
+
|
48
|
+
result_add_option: (option) ->
|
49
|
+
if not option.disabled
|
50
|
+
option.dom_id = @container_id + "_o_" + option.array_index
|
51
|
+
|
52
|
+
classes = if option.selected and @is_multiple then [] else ["active-result"]
|
53
|
+
classes.push "result-selected" if option.selected
|
54
|
+
classes.push "group-option" if option.group_array_index?
|
55
|
+
classes.push option.classes if option.classes != ""
|
56
|
+
|
57
|
+
style = if option.style.cssText != "" then " style=\"#{option.style}\"" else ""
|
58
|
+
|
59
|
+
'<li id="' + option.dom_id + '" class="' + classes.join(' ') + '"'+style+'>' + option.html + '</li>'
|
60
|
+
else
|
61
|
+
""
|
62
|
+
|
63
|
+
results_update_field: ->
|
64
|
+
this.result_clear_highlight()
|
65
|
+
@result_single_selected = null
|
66
|
+
this.results_build()
|
67
|
+
|
68
|
+
results_toggle: ->
|
69
|
+
if @results_showing
|
70
|
+
this.results_hide()
|
71
|
+
else
|
72
|
+
this.results_show()
|
73
|
+
|
74
|
+
results_search: (evt) ->
|
75
|
+
if @results_showing
|
76
|
+
this.winnow_results()
|
77
|
+
else
|
78
|
+
this.results_show()
|
79
|
+
|
80
|
+
keyup_checker: (evt) ->
|
81
|
+
stroke = evt.which ? evt.keyCode
|
82
|
+
this.search_field_scale()
|
83
|
+
|
84
|
+
switch stroke
|
85
|
+
when 8
|
86
|
+
if @is_multiple and @backstroke_length < 1 and @choices > 0
|
87
|
+
this.keydown_backstroke()
|
88
|
+
else if not @pending_backstroke
|
89
|
+
this.result_clear_highlight()
|
90
|
+
this.results_search()
|
91
|
+
when 13
|
92
|
+
evt.preventDefault()
|
93
|
+
this.result_select(evt) if this.results_showing || this.options.allow_option_creation
|
94
|
+
when 27
|
95
|
+
this.results_hide() if @results_showing
|
96
|
+
when 9, 38, 40, 16, 91, 17
|
97
|
+
# don't do anything on these keys
|
98
|
+
else this.results_search()
|
99
|
+
|
100
|
+
generate_field_id: ->
|
101
|
+
new_id = this.generate_random_id()
|
102
|
+
@form_field.id = new_id
|
103
|
+
new_id
|
104
|
+
|
105
|
+
generate_random_char: ->
|
106
|
+
chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZ"
|
107
|
+
rand = Math.floor(Math.random() * chars.length)
|
108
|
+
newchar = chars.substring rand, rand+1
|
109
|
+
|
110
|
+
root.AbstractChosen = AbstractChosen
|
@@ -0,0 +1,51 @@
|
|
1
|
+
class SelectParser
|
2
|
+
|
3
|
+
constructor: ->
|
4
|
+
@options_index = 0
|
5
|
+
@parsed = []
|
6
|
+
|
7
|
+
add_node: (child) ->
|
8
|
+
if child.nodeName is "OPTGROUP"
|
9
|
+
this.add_group child
|
10
|
+
else
|
11
|
+
this.add_option child
|
12
|
+
|
13
|
+
add_group: (group) ->
|
14
|
+
group_position = @parsed.length
|
15
|
+
@parsed.push
|
16
|
+
array_index: group_position
|
17
|
+
group: true
|
18
|
+
label: group.label
|
19
|
+
children: 0
|
20
|
+
disabled: group.disabled
|
21
|
+
this.add_option( option, group_position, group.disabled ) for option in group.childNodes
|
22
|
+
|
23
|
+
add_option: (option, group_position, group_disabled) ->
|
24
|
+
if option.nodeName is "OPTION"
|
25
|
+
if option.text != ""
|
26
|
+
if group_position?
|
27
|
+
@parsed[group_position].children += 1
|
28
|
+
@parsed.push
|
29
|
+
array_index: @parsed.length
|
30
|
+
options_index: @options_index
|
31
|
+
value: option.value
|
32
|
+
text: option.text
|
33
|
+
html: option.innerHTML
|
34
|
+
selected: option.selected
|
35
|
+
disabled: if group_disabled is true then group_disabled else option.disabled
|
36
|
+
group_array_index: group_position
|
37
|
+
classes: option.className
|
38
|
+
style: option.style.cssText
|
39
|
+
else
|
40
|
+
@parsed.push
|
41
|
+
array_index: @parsed.length
|
42
|
+
options_index: @options_index
|
43
|
+
empty: true
|
44
|
+
@options_index += 1
|
45
|
+
|
46
|
+
SelectParser.select_to_array = (select) ->
|
47
|
+
parser = new SelectParser()
|
48
|
+
parser.add_node( child ) for child in select.childNodes
|
49
|
+
parser.parsed
|
50
|
+
|
51
|
+
this.SelectParser = SelectParser
|
@@ -0,0 +1,361 @@
|
|
1
|
+
/* @group Base
|
2
|
+
|
3
|
+
.chzn-container
|
4
|
+
font-size: 13px
|
5
|
+
position: relative
|
6
|
+
display: inline-block
|
7
|
+
zoom: 1
|
8
|
+
*display: inline
|
9
|
+
.chzn-drop
|
10
|
+
background: #fff
|
11
|
+
border: 1px solid #aaa
|
12
|
+
border-top: 0
|
13
|
+
position: absolute
|
14
|
+
top: 29px
|
15
|
+
left: 0
|
16
|
+
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
17
|
+
-moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
18
|
+
-o-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
19
|
+
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15)
|
20
|
+
z-index: 999
|
21
|
+
|
22
|
+
/* @end
|
23
|
+
|
24
|
+
/* @group Single Chosen
|
25
|
+
|
26
|
+
.chzn-container-single
|
27
|
+
.chzn-single
|
28
|
+
background-color: #fff
|
29
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white))
|
30
|
+
background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%)
|
31
|
+
background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%)
|
32
|
+
background-image: -o-linear-gradient(top, #eeeeee 0%, white 50%)
|
33
|
+
background-image: -ms-linear-gradient(top, #eeeeee 0%, white 50%)
|
34
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 )
|
35
|
+
background-image: linear-gradient(top, #eeeeee 0%, white 50%)
|
36
|
+
-webkit-border-radius: 4px
|
37
|
+
-moz-border-radius: 4px
|
38
|
+
border-radius: 4px
|
39
|
+
-moz-background-clip: padding
|
40
|
+
-webkit-background-clip: padding-box
|
41
|
+
background-clip: padding-box
|
42
|
+
border: 1px solid #aaa
|
43
|
+
display: block
|
44
|
+
overflow: hidden
|
45
|
+
white-space: nowrap
|
46
|
+
position: relative
|
47
|
+
height: 26px
|
48
|
+
line-height: 26px
|
49
|
+
padding: 0 0 0 8px
|
50
|
+
color: #444
|
51
|
+
text-decoration: none
|
52
|
+
span
|
53
|
+
margin-right: 26px
|
54
|
+
display: block
|
55
|
+
overflow: hidden
|
56
|
+
white-space: nowrap
|
57
|
+
-o-text-overflow: ellipsis
|
58
|
+
-ms-text-overflow: ellipsis
|
59
|
+
text-overflow: ellipsis
|
60
|
+
abbr
|
61
|
+
display: block
|
62
|
+
position: absolute
|
63
|
+
right: 26px
|
64
|
+
top: 8px
|
65
|
+
width: 12px
|
66
|
+
height: 13px
|
67
|
+
font-size: 1px
|
68
|
+
background: image-url('chosen-sprite.png') right top no-repeat
|
69
|
+
&:hover
|
70
|
+
background-position: right -11px
|
71
|
+
div
|
72
|
+
-webkit-border-radius: 0 4px 4px 0
|
73
|
+
-moz-border-radius: 0 4px 4px 0
|
74
|
+
border-radius: 0 4px 4px 0
|
75
|
+
-moz-background-clip: padding
|
76
|
+
-webkit-background-clip: padding-box
|
77
|
+
background-clip: padding-box
|
78
|
+
background: #ccc
|
79
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #cccccc), color-stop(0.6, #eeeeee))
|
80
|
+
background-image: -webkit-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%)
|
81
|
+
background-image: -moz-linear-gradient(center bottom, #cccccc 0%, #eeeeee 60%)
|
82
|
+
background-image: -o-linear-gradient(bottom, #cccccc 0%, #eeeeee 60%)
|
83
|
+
background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%)
|
84
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 )
|
85
|
+
background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%)
|
86
|
+
border-left: 1px solid #aaa
|
87
|
+
position: absolute
|
88
|
+
right: 0
|
89
|
+
top: 0
|
90
|
+
display: block
|
91
|
+
height: 100%
|
92
|
+
width: 18px
|
93
|
+
b
|
94
|
+
background: image-url('chosen-sprite.png') no-repeat 0 1px
|
95
|
+
display: block
|
96
|
+
width: 100%
|
97
|
+
height: 100%
|
98
|
+
.chzn-search
|
99
|
+
padding: 3px 4px
|
100
|
+
position: relative
|
101
|
+
margin: 0
|
102
|
+
white-space: nowrap
|
103
|
+
z-index: 1010
|
104
|
+
input
|
105
|
+
background: white image-url('chosen-sprite.png') no-repeat 100% -22px
|
106
|
+
background: image-url('chosen-sprite.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee))
|
107
|
+
background: image-url('chosen-sprite.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
108
|
+
background: image-url('chosen-sprite.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
109
|
+
background: image-url('chosen-sprite.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%)
|
110
|
+
background: image-url('chosen-sprite.png') no-repeat 100% -22px, -ms-linear-gradient(top, white 85%, #eeeeee 99%)
|
111
|
+
background: image-url('chosen-sprite.png') no-repeat 100% -22px, linear-gradient(top, white 85%, #eeeeee 99%)
|
112
|
+
margin: 1px 0
|
113
|
+
padding: 4px 20px 4px 5px
|
114
|
+
outline: 0
|
115
|
+
border: 1px solid #aaa
|
116
|
+
font-family: sans-serif
|
117
|
+
font-size: 1em
|
118
|
+
.chzn-drop
|
119
|
+
-webkit-border-radius: 0 0 4px 4px
|
120
|
+
-moz-border-radius: 0 0 4px 4px
|
121
|
+
border-radius: 0 0 4px 4px
|
122
|
+
-moz-background-clip: padding
|
123
|
+
-webkit-background-clip: padding-box
|
124
|
+
background-clip: padding-box
|
125
|
+
|
126
|
+
/* @end
|
127
|
+
|
128
|
+
.chzn-container-single-nosearch .chzn-search input
|
129
|
+
position: absolute
|
130
|
+
left: -9000px
|
131
|
+
|
132
|
+
/* @group Multi Chosen
|
133
|
+
|
134
|
+
.chzn-container-multi .chzn-choices
|
135
|
+
background-color: #fff
|
136
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee))
|
137
|
+
background-image: -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
138
|
+
background-image: -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
139
|
+
background-image: -o-linear-gradient(bottom, white 85%, #eeeeee 99%)
|
140
|
+
background-image: -ms-linear-gradient(top, white 85%, #eeeeee 99%)
|
141
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 )
|
142
|
+
background-image: linear-gradient(top, white 85%, #eeeeee 99%)
|
143
|
+
border: 1px solid #aaa
|
144
|
+
margin: 0
|
145
|
+
padding: 0
|
146
|
+
cursor: text
|
147
|
+
overflow: hidden
|
148
|
+
height: auto !important
|
149
|
+
height: 1%
|
150
|
+
position: relative
|
151
|
+
li
|
152
|
+
float: left
|
153
|
+
list-style: none
|
154
|
+
.search-field
|
155
|
+
white-space: nowrap
|
156
|
+
margin: 0
|
157
|
+
padding: 0
|
158
|
+
input
|
159
|
+
color: #666
|
160
|
+
background: transparent !important
|
161
|
+
border: 0 !important
|
162
|
+
padding: 5px
|
163
|
+
margin: 1px 0
|
164
|
+
outline: 0
|
165
|
+
-webkit-box-shadow: none
|
166
|
+
-moz-box-shadow: none
|
167
|
+
-o-box-shadow: none
|
168
|
+
box-shadow: none
|
169
|
+
.default
|
170
|
+
color: #999
|
171
|
+
.search-choice
|
172
|
+
-webkit-border-radius: 3px
|
173
|
+
-moz-border-radius: 3px
|
174
|
+
border-radius: 3px
|
175
|
+
-moz-background-clip: padding
|
176
|
+
-webkit-background-clip: padding-box
|
177
|
+
background-clip: padding-box
|
178
|
+
background-color: #e4e4e4
|
179
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e4e4e4), color-stop(0.7, #eeeeee))
|
180
|
+
background-image: -webkit-linear-gradient(center bottom, #e4e4e4 0%, #eeeeee 70%)
|
181
|
+
background-image: -moz-linear-gradient(center bottom, #e4e4e4 0%, #eeeeee 70%)
|
182
|
+
background-image: -o-linear-gradient(bottom, #e4e4e4 0%, #eeeeee 70%)
|
183
|
+
background-image: -ms-linear-gradient(top, #e4e4e4 0%, #eeeeee 70%)
|
184
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4e4e4', endColorstr='#eeeeee',GradientType=0 )
|
185
|
+
background-image: linear-gradient(top, #e4e4e4 0%, #eeeeee 70%)
|
186
|
+
color: #333
|
187
|
+
border: 1px solid #b4b4b4
|
188
|
+
line-height: 13px
|
189
|
+
padding: 3px 19px 3px 6px
|
190
|
+
margin: 3px 0 3px 5px
|
191
|
+
position: relative
|
192
|
+
span
|
193
|
+
cursor: default
|
194
|
+
.search-choice-focus
|
195
|
+
background: #d4d4d4
|
196
|
+
.search-choice .search-choice-close
|
197
|
+
display: block
|
198
|
+
position: absolute
|
199
|
+
right: 3px
|
200
|
+
top: 4px
|
201
|
+
width: 12px
|
202
|
+
height: 13px
|
203
|
+
font-size: 1px
|
204
|
+
background: image-url('chosen-sprite.png') right top no-repeat
|
205
|
+
&:hover
|
206
|
+
background-position: right -11px
|
207
|
+
.search-choice-focus .search-choice-close
|
208
|
+
background-position: right -11px
|
209
|
+
|
210
|
+
/* @end
|
211
|
+
|
212
|
+
/* @group Results
|
213
|
+
|
214
|
+
.chzn-container .chzn-results
|
215
|
+
margin: 0 4px 4px 0
|
216
|
+
max-height: 190px
|
217
|
+
padding: 0 0 0 4px
|
218
|
+
position: relative
|
219
|
+
overflow-x: hidden
|
220
|
+
overflow-y: auto
|
221
|
+
|
222
|
+
.chzn-container-multi .chzn-results
|
223
|
+
margin: -1px 0 0
|
224
|
+
padding: 0
|
225
|
+
|
226
|
+
.chzn-container .chzn-results
|
227
|
+
li
|
228
|
+
display: none
|
229
|
+
line-height: 80%
|
230
|
+
padding: 7px 7px 8px
|
231
|
+
margin: 0
|
232
|
+
list-style: none
|
233
|
+
.active-result
|
234
|
+
cursor: pointer
|
235
|
+
display: list-item
|
236
|
+
.highlighted
|
237
|
+
background: #3875d7
|
238
|
+
color: #fff
|
239
|
+
li em
|
240
|
+
background: #feffde
|
241
|
+
font-style: normal
|
242
|
+
.highlighted em
|
243
|
+
background: transparent
|
244
|
+
.no-results
|
245
|
+
background: #f4f4f4
|
246
|
+
display: list-item
|
247
|
+
.group-result
|
248
|
+
cursor: default
|
249
|
+
color: #999
|
250
|
+
font-weight: bold
|
251
|
+
.group-option
|
252
|
+
padding-left: 20px
|
253
|
+
|
254
|
+
.chzn-container-multi .chzn-drop .result-selected
|
255
|
+
display: none
|
256
|
+
|
257
|
+
/* @end
|
258
|
+
|
259
|
+
/* @group Active
|
260
|
+
|
261
|
+
.chzn-container-active
|
262
|
+
.chzn-single
|
263
|
+
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
264
|
+
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
265
|
+
-o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
266
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
267
|
+
border: 1px solid #5897fb
|
268
|
+
.chzn-single-with-drop
|
269
|
+
border: 1px solid #aaa
|
270
|
+
-webkit-box-shadow: 0 1px 0 #fff inset
|
271
|
+
-moz-box-shadow: 0 1px 0 #fff inset
|
272
|
+
-o-box-shadow: 0 1px 0 #fff inset
|
273
|
+
box-shadow: 0 1px 0 #fff inset
|
274
|
+
background-color: #eee
|
275
|
+
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee))
|
276
|
+
background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%)
|
277
|
+
background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%)
|
278
|
+
background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%)
|
279
|
+
background-image: -ms-linear-gradient(top, white 0%, #eeeeee 50%)
|
280
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 )
|
281
|
+
background-image: linear-gradient(top, white 0%, #eeeeee 50%)
|
282
|
+
-webkit-border-bottom-left-radius: 0
|
283
|
+
-webkit-border-bottom-right-radius: 0
|
284
|
+
-moz-border-radius-bottomleft: 0
|
285
|
+
-moz-border-radius-bottomright: 0
|
286
|
+
border-bottom-left-radius: 0
|
287
|
+
border-bottom-right-radius: 0
|
288
|
+
div
|
289
|
+
background: transparent
|
290
|
+
border-left: none
|
291
|
+
b
|
292
|
+
background-position: -18px 1px
|
293
|
+
.chzn-choices
|
294
|
+
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
295
|
+
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
296
|
+
-o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
297
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3)
|
298
|
+
border: 1px solid #5897fb
|
299
|
+
.search-field input
|
300
|
+
color: #111 !important
|
301
|
+
|
302
|
+
/* @end
|
303
|
+
|
304
|
+
/* @group Disabled Support
|
305
|
+
|
306
|
+
.chzn-disabled
|
307
|
+
cursor: default
|
308
|
+
opacity: 0.5 !important
|
309
|
+
.chzn-single, .chzn-choices .search-choice .search-choice-close
|
310
|
+
cursor: default
|
311
|
+
|
312
|
+
/* @group Right to Left
|
313
|
+
|
314
|
+
.chzn-rtl
|
315
|
+
direction: rtl
|
316
|
+
text-align: right
|
317
|
+
.chzn-single
|
318
|
+
padding-left: 0
|
319
|
+
padding-right: 8px
|
320
|
+
span
|
321
|
+
margin-left: 26px
|
322
|
+
margin-right: 0
|
323
|
+
div
|
324
|
+
left: 0
|
325
|
+
right: auto
|
326
|
+
border-left: none
|
327
|
+
border-right: 1px solid #aaaaaa
|
328
|
+
-webkit-border-radius: 4px 0 0 4px
|
329
|
+
-moz-border-radius: 4px 0 0 4px
|
330
|
+
border-radius: 4px 0 0 4px
|
331
|
+
.chzn-choices
|
332
|
+
li
|
333
|
+
float: right
|
334
|
+
.search-choice
|
335
|
+
padding: 3px 6px 3px 19px
|
336
|
+
margin: 3px 5px 3px 0
|
337
|
+
.search-choice-close
|
338
|
+
left: 5px
|
339
|
+
right: auto
|
340
|
+
background-position: right top
|
341
|
+
&.chzn-container-single .chzn-results
|
342
|
+
margin-left: 4px
|
343
|
+
margin-right: 0
|
344
|
+
padding-left: 0
|
345
|
+
padding-right: 4px
|
346
|
+
.chzn-results .group-option
|
347
|
+
padding-left: 0
|
348
|
+
padding-right: 20px
|
349
|
+
&.chzn-container-active .chzn-single-with-drop div
|
350
|
+
border-right: none
|
351
|
+
.chzn-search input
|
352
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, white
|
353
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee))
|
354
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
355
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%)
|
356
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%)
|
357
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, -ms-linear-gradient(top, white 85%, #eeeeee 99%)
|
358
|
+
background: image-url('chosen-sprite.png') no-repeat -38px -22px, linear-gradient(top, white 85%, #eeeeee 99%)
|
359
|
+
padding: 4px 5px 4px 20px
|
360
|
+
|
361
|
+
/* @end
|