trln-chosen-rails 1.8.7 → 1.30.0.pre.beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,332 @@
1
+ /* @group Base */
2
+ .chosen-container {
3
+ position: relative;
4
+ display: inline-block;
5
+ vertical-align: middle;
6
+ font-size: 13px;
7
+ user-select: none; }
8
+ .chosen-container * {
9
+ box-sizing: border-box; }
10
+ .chosen-container .chosen-drop {
11
+ position: absolute;
12
+ top: 100%;
13
+ z-index: 1010;
14
+ width: 100%;
15
+ border: 1px solid #aaa;
16
+ border-top: 0;
17
+ background: #fff;
18
+ box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
19
+ clip: rect(0, 0, 0, 0);
20
+ clip-path: inset(100% 100%); }
21
+ .chosen-container.chosen-with-drop .chosen-drop {
22
+ clip: auto;
23
+ clip-path: none; }
24
+ .chosen-container a {
25
+ cursor: pointer; }
26
+ .chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
27
+ margin-right: 4px;
28
+ overflow: hidden;
29
+ white-space: nowrap;
30
+ text-overflow: ellipsis;
31
+ font-weight: normal;
32
+ color: #999999; }
33
+ .chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
34
+ content: ":";
35
+ padding-left: 2px;
36
+ vertical-align: top; }
37
+
38
+ /* @end */
39
+ /* @group Single Chosen */
40
+ .chosen-container-single .chosen-single {
41
+ position: relative;
42
+ display: block;
43
+ overflow: hidden;
44
+ padding: 0 0 0 8px;
45
+ height: 25px;
46
+ border: 1px solid #aaa;
47
+ border-radius: 5px;
48
+ background-color: #fff;
49
+ background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
50
+ background-clip: padding-box;
51
+ box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
52
+ color: #444;
53
+ text-decoration: none;
54
+ white-space: nowrap;
55
+ line-height: 24px; }
56
+ .chosen-container-single .chosen-default {
57
+ color: #999; }
58
+ .chosen-container-single .chosen-single span {
59
+ display: block;
60
+ overflow: hidden;
61
+ margin-right: 26px;
62
+ text-overflow: ellipsis;
63
+ white-space: nowrap; }
64
+ .chosen-container-single .chosen-single-with-deselect span {
65
+ margin-right: 38px; }
66
+ .chosen-container-single .chosen-single abbr {
67
+ position: absolute;
68
+ top: 6px;
69
+ right: 26px;
70
+ display: block;
71
+ width: 12px;
72
+ height: 12px;
73
+ background: image-url("chosen-sprite.png") -42px 1px no-repeat;
74
+ font-size: 1px; }
75
+ .chosen-container-single .chosen-single abbr:hover {
76
+ background-position: -42px -10px; }
77
+ .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
78
+ background-position: -42px -10px; }
79
+ .chosen-container-single .chosen-single div {
80
+ position: absolute;
81
+ top: 0;
82
+ right: 0;
83
+ display: block;
84
+ width: 18px;
85
+ height: 100%; }
86
+ .chosen-container-single .chosen-single div b {
87
+ display: block;
88
+ width: 100%;
89
+ height: 100%;
90
+ background: image-url("chosen-sprite.png") no-repeat 0px 2px; }
91
+ .chosen-container-single .chosen-search {
92
+ position: relative;
93
+ z-index: 1010;
94
+ margin: 0;
95
+ padding: 3px 4px;
96
+ white-space: nowrap; }
97
+ .chosen-container-single .chosen-search input[type="text"] {
98
+ margin: 1px 0;
99
+ padding: 4px 20px 4px 5px;
100
+ width: 100%;
101
+ height: auto;
102
+ outline: 0;
103
+ border: 1px solid #aaa;
104
+ background: image-url("chosen-sprite.png") no-repeat 100% -20px;
105
+ font-size: 1em;
106
+ font-family: sans-serif;
107
+ line-height: normal;
108
+ border-radius: 0; }
109
+ .chosen-container-single .chosen-drop {
110
+ margin-top: -1px;
111
+ border-radius: 0 0 4px 4px;
112
+ background-clip: padding-box; }
113
+ .chosen-container-single.chosen-container-single-nosearch .chosen-search {
114
+ position: absolute;
115
+ clip: rect(0, 0, 0, 0);
116
+ clip-path: inset(100% 100%); }
117
+
118
+ /* @end */
119
+ /* @group Results */
120
+ .chosen-container .chosen-results {
121
+ color: #444;
122
+ position: relative;
123
+ overflow-x: hidden;
124
+ overflow-y: auto;
125
+ margin: 0 4px 4px 0;
126
+ padding: 0 0 0 4px;
127
+ max-height: 240px;
128
+ -webkit-overflow-scrolling: touch; }
129
+ .chosen-container .chosen-results li {
130
+ display: none;
131
+ margin: 0;
132
+ padding: 5px 6px;
133
+ list-style: none;
134
+ line-height: 15px;
135
+ word-wrap: break-word;
136
+ -webkit-touch-callout: none; }
137
+ .chosen-container .chosen-results li.active-result {
138
+ display: list-item;
139
+ cursor: pointer; }
140
+ .chosen-container .chosen-results li.disabled-result {
141
+ display: list-item;
142
+ color: #ccc;
143
+ cursor: default; }
144
+ .chosen-container .chosen-results li.highlighted {
145
+ background-color: #3875d7;
146
+ background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
147
+ color: #fff; }
148
+ .chosen-container .chosen-results li.no-results {
149
+ color: #777;
150
+ display: list-item;
151
+ background: #f4f4f4; }
152
+ .chosen-container .chosen-results li.group-result {
153
+ display: list-item;
154
+ font-weight: bold;
155
+ cursor: default; }
156
+ .chosen-container .chosen-results li.group-option {
157
+ padding-left: 15px; }
158
+ .chosen-container .chosen-results li em {
159
+ font-style: normal;
160
+ text-decoration: underline; }
161
+
162
+ /* @end */
163
+ /* @group Multi Chosen */
164
+ .chosen-container-multi .chosen-choices {
165
+ position: relative;
166
+ overflow: hidden;
167
+ margin: 0;
168
+ padding: 0 5px;
169
+ width: 100%;
170
+ height: auto;
171
+ border: 1px solid #aaa;
172
+ background-color: #fff;
173
+ background-image: linear-gradient(#eee 1%, #fff 15%);
174
+ cursor: text; }
175
+ .chosen-container-multi .chosen-choices li {
176
+ float: left;
177
+ list-style: none; }
178
+ .chosen-container-multi .chosen-choices li.search-field {
179
+ margin: 0;
180
+ padding: 0;
181
+ white-space: nowrap; }
182
+ .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
183
+ margin: 1px 0;
184
+ padding: 0;
185
+ height: 25px;
186
+ outline: 0;
187
+ border: 0 !important;
188
+ background: transparent !important;
189
+ box-shadow: none;
190
+ color: #999;
191
+ font-size: 100%;
192
+ font-family: sans-serif;
193
+ line-height: normal;
194
+ border-radius: 0;
195
+ width: 25px; }
196
+ .chosen-container-multi .chosen-choices li.search-choice {
197
+ position: relative;
198
+ margin: 3px 5px 3px 0;
199
+ padding: 3px 20px 3px 5px;
200
+ border: 1px solid #aaa;
201
+ max-width: 100%;
202
+ border-radius: 3px;
203
+ background-color: #eeeeee;
204
+ background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
205
+ background-size: 100% 19px;
206
+ background-repeat: repeat-x;
207
+ background-clip: padding-box;
208
+ box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
209
+ color: #333;
210
+ line-height: 13px;
211
+ cursor: default; }
212
+ .chosen-container-multi .chosen-choices li.search-choice span {
213
+ word-wrap: break-word; }
214
+ .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
215
+ position: absolute;
216
+ top: 4px;
217
+ right: 3px;
218
+ display: block;
219
+ width: 12px;
220
+ height: 12px;
221
+ background: image-url("chosen-sprite.png") -42px 1px no-repeat;
222
+ font-size: 1px; }
223
+ .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
224
+ background-position: -42px -10px; }
225
+ .chosen-container-multi .chosen-choices li.search-choice-disabled {
226
+ padding-right: 5px;
227
+ border: 1px solid #ccc;
228
+ background-color: #e4e4e4;
229
+ background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
230
+ color: #666; }
231
+ .chosen-container-multi .chosen-choices li.search-choice-focus {
232
+ background: #d4d4d4; }
233
+ .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
234
+ background-position: -42px -10px; }
235
+ .chosen-container-multi .chosen-results {
236
+ margin: 0;
237
+ padding: 0; }
238
+ .chosen-container-multi .chosen-drop .result-selected {
239
+ display: list-item;
240
+ color: #ccc;
241
+ cursor: default; }
242
+
243
+ /* @end */
244
+ /* @group Active */
245
+ .chosen-container-active .chosen-single {
246
+ border: 1px solid #5897fb;
247
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
248
+ .chosen-container-active.chosen-with-drop .chosen-single {
249
+ border: 1px solid #aaa;
250
+ -moz-border-radius-bottomright: 0;
251
+ border-bottom-right-radius: 0;
252
+ -moz-border-radius-bottomleft: 0;
253
+ border-bottom-left-radius: 0;
254
+ background-image: linear-gradient(#eee 20%, #fff 80%);
255
+ box-shadow: 0 1px 0 #fff inset; }
256
+ .chosen-container-active.chosen-with-drop .chosen-single div {
257
+ border-left: none;
258
+ background: transparent; }
259
+ .chosen-container-active.chosen-with-drop .chosen-single div b {
260
+ background-position: -18px 2px; }
261
+ .chosen-container-active .chosen-choices {
262
+ border: 1px solid #5897fb;
263
+ box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
264
+ .chosen-container-active .chosen-choices li.search-field input[type="text"] {
265
+ color: #222 !important; }
266
+
267
+ /* @end */
268
+ /* @group Disabled Support */
269
+ .chosen-disabled {
270
+ opacity: 0.5 !important;
271
+ cursor: default; }
272
+ .chosen-disabled .chosen-single {
273
+ cursor: default; }
274
+ .chosen-disabled .chosen-choices .search-choice .search-choice-close {
275
+ cursor: default; }
276
+
277
+ /* @end */
278
+ /* @group Right to Left */
279
+ .chosen-rtl {
280
+ text-align: right; }
281
+ .chosen-rtl .chosen-single {
282
+ overflow: visible;
283
+ padding: 0 8px 0 0; }
284
+ .chosen-rtl .chosen-single span {
285
+ margin-right: 0;
286
+ margin-left: 26px;
287
+ direction: rtl; }
288
+ .chosen-rtl .chosen-single-with-deselect span {
289
+ margin-left: 38px; }
290
+ .chosen-rtl .chosen-single div {
291
+ right: auto;
292
+ left: 3px; }
293
+ .chosen-rtl .chosen-single abbr {
294
+ right: auto;
295
+ left: 26px; }
296
+ .chosen-rtl .chosen-choices li {
297
+ float: right; }
298
+ .chosen-rtl .chosen-choices li.search-field input[type="text"] {
299
+ direction: rtl; }
300
+ .chosen-rtl .chosen-choices li.search-choice {
301
+ margin: 3px 5px 3px 0;
302
+ padding: 3px 5px 3px 19px; }
303
+ .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
304
+ right: auto;
305
+ left: 4px; }
306
+ .chosen-rtl.chosen-container-single .chosen-results {
307
+ margin: 0 0 4px 4px;
308
+ padding: 0 4px 0 0; }
309
+ .chosen-rtl .chosen-results li.group-option {
310
+ padding-right: 15px;
311
+ padding-left: 0; }
312
+ .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
313
+ border-right: none; }
314
+ .chosen-rtl .chosen-search input[type="text"] {
315
+ padding: 4px 5px 4px 20px;
316
+ background: image-url("chosen-sprite.png") no-repeat -30px -20px;
317
+ direction: rtl; }
318
+ .chosen-rtl.chosen-container-single .chosen-single div b {
319
+ background-position: 6px 2px; }
320
+ .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
321
+ background-position: -12px 2px; }
322
+
323
+ /* @end */
324
+ /* @group Retina compatibility */
325
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
326
+ .chosen-rtl .chosen-search input[type="text"], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-container-single .chosen-search input[type="text"], .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span {
327
+ background-image: image-url("chosen-sprite@2x.png") !important;
328
+ background-size: 52px 37px !important;
329
+ background-repeat: no-repeat !important; } }
330
+ /* @end */
331
+
332
+ /*# sourceMappingURL=chosen.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "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",
4
+ "sources": ["chosen.scss"],
5
+ "names": [],
6
+ "file": "chosen.css"
7
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trln-chosen-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.7
4
+ version: 1.30.0.pre.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tse-Ching Ho
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-04-25 00:00:00.000000000 Z
12
+ date: 2024-03-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties
@@ -39,20 +39,6 @@ dependencies:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '3.2'
42
- - !ruby/object:Gem::Dependency
43
- name: sassc-rails
44
- requirement: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - ">="
47
- - !ruby/object:Gem::Version
48
- version: '2.1'
49
- type: :runtime
50
- prerelease: false
51
- version_requirements: !ruby/object:Gem::Requirement
52
- requirements:
53
- - - ">="
54
- - !ruby/object:Gem::Version
55
- version: '2.1'
56
42
  - !ruby/object:Gem::Dependency
57
43
  name: bundler
58
44
  requirement: !ruby/object:Gem::Requirement
@@ -126,9 +112,10 @@ files:
126
112
  - vendor/assets/javascripts/chosen.proto.coffee
127
113
  - vendor/assets/javascripts/lib/abstract-chosen.coffee
128
114
  - vendor/assets/javascripts/lib/select-parser.coffee
129
- - vendor/assets/stylesheets/chosen-base.scss
130
- - vendor/assets/stylesheets/chosen-compass.scss
131
- - vendor/assets/stylesheets/chosen.scss
115
+ - vendor/assets/stylesheets/chosen-base.css
116
+ - vendor/assets/stylesheets/chosen-base.css.map
117
+ - vendor/assets/stylesheets/chosen.css
118
+ - vendor/assets/stylesheets/chosen.css.map
132
119
  homepage: https://github.com/trln/chosen-rails
133
120
  licenses:
134
121
  - MIT
@@ -144,11 +131,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
144
131
  version: '0'
145
132
  required_rubygems_version: !ruby/object:Gem::Requirement
146
133
  requirements:
147
- - - ">="
134
+ - - ">"
148
135
  - !ruby/object:Gem::Version
149
- version: '0'
136
+ version: 1.3.1
150
137
  requirements: []
151
- rubygems_version: 3.0.3
138
+ rubygems_version: 3.4.1
152
139
  signing_key:
153
140
  specification_version: 4
154
141
  summary: Integrate Chosen javascript library with Rails asset pipeline