fomantic-ui-sass 2.7.8 → 2.8.4
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +83 -29
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +59 -41
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +3 -3
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/javascripts/semantic-ui/api.js +1 -1
- data/app/assets/javascripts/semantic-ui/calendar.js +103 -27
- data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +93 -71
- data/app/assets/javascripts/semantic-ui/form.js +69 -22
- data/app/assets/javascripts/semantic-ui/modal.js +104 -33
- data/app/assets/javascripts/semantic-ui/popup.js +10 -10
- data/app/assets/javascripts/semantic-ui/progress.js +10 -8
- data/app/assets/javascripts/semantic-ui/rating.js +35 -6
- data/app/assets/javascripts/semantic-ui/search.js +2 -2
- data/app/assets/javascripts/semantic-ui/sidebar.js +2 -3
- data/app/assets/javascripts/semantic-ui/slider.js +78 -29
- data/app/assets/javascripts/semantic-ui/tab.js +1 -1
- data/app/assets/javascripts/semantic-ui/toast.js +398 -122
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +779 -142
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +101 -145
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1009 -208
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +51 -81
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +35 -14
- data/app/assets/stylesheets/semantic-ui/elements/_emoji.scss +12309 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +111 -66
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +105 -34
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +28 -28
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +211 -62
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +20 -20
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +52 -51
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +85 -91
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +8 -8
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +31 -10
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +39 -39
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +16 -17
- data/app/assets/stylesheets/semantic-ui/elements/_text.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +15 -124
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +30 -30
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +183 -111
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +128 -30
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +105 -79
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +44 -26
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +246 -21
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +16 -13
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +3 -2
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +12 -14
- data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +20 -23
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +542 -155
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +16 -16
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +42 -17
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -5
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +33 -12
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +60 -46
- data/fomantic-ui-sass.gemspec +2 -2
- data/lib/fomantic-ui-sass.rb +2 -2
- data/lib/fomantic/ui/sass/version.rb +2 -2
- data/spec/dummy/app/assets/config/manifest.js +0 -0
- metadata +12 -9
|
@@ -108,6 +108,9 @@ span.ui.disabled.text {
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
/* Sizes */
|
|
111
|
+
span.ui.medium.text {
|
|
112
|
+
font-size: 1em;
|
|
113
|
+
}
|
|
111
114
|
span.ui.mini.text {
|
|
112
115
|
font-size: 0.4em;
|
|
113
116
|
}
|
|
@@ -117,9 +120,6 @@ span.ui.tiny.text {
|
|
|
117
120
|
span.ui.small.text {
|
|
118
121
|
font-size: 0.75em;
|
|
119
122
|
}
|
|
120
|
-
span.ui.medium.text {
|
|
121
|
-
font-size: 1em;
|
|
122
|
-
}
|
|
123
123
|
span.ui.large.text {
|
|
124
124
|
font-size: 1.5em;
|
|
125
125
|
}
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
|
|
112
112
|
|
|
113
113
|
/*--------------
|
|
114
|
-
|
|
115
|
-
---------------*/
|
|
114
|
+
Styled
|
|
115
|
+
---------------*/
|
|
116
116
|
|
|
117
117
|
.ui.styled.accordion {
|
|
118
118
|
width: 600px;
|
|
@@ -196,8 +196,8 @@
|
|
|
196
196
|
|
|
197
197
|
|
|
198
198
|
/*--------------
|
|
199
|
-
|
|
200
|
-
---------------*/
|
|
199
|
+
Fluid
|
|
200
|
+
---------------*/
|
|
201
201
|
|
|
202
202
|
.ui.fluid.accordion,
|
|
203
203
|
.ui.fluid.accordion .accordion {
|
|
@@ -205,8 +205,8 @@
|
|
|
205
205
|
}
|
|
206
206
|
|
|
207
207
|
/*--------------
|
|
208
|
-
|
|
209
|
-
---------------*/
|
|
208
|
+
Inverted
|
|
209
|
+
---------------*/
|
|
210
210
|
|
|
211
211
|
.ui.inverted.accordion .title:not(.ui) {
|
|
212
212
|
color: rgba(255, 255, 255, 0.9);
|
|
@@ -45,12 +45,6 @@
|
|
|
45
45
|
width: 17px;
|
|
46
46
|
height: 17px;
|
|
47
47
|
}
|
|
48
|
-
|
|
49
|
-
/*--------------
|
|
50
|
-
Box
|
|
51
|
-
---------------*/
|
|
52
|
-
|
|
53
|
-
.ui.checkbox .box,
|
|
54
48
|
.ui.checkbox label {
|
|
55
49
|
cursor: auto;
|
|
56
50
|
position: relative;
|
|
@@ -59,7 +53,6 @@
|
|
|
59
53
|
outline: none;
|
|
60
54
|
font-size: 1em;
|
|
61
55
|
}
|
|
62
|
-
.ui.checkbox .box:before,
|
|
63
56
|
.ui.checkbox label:before {
|
|
64
57
|
position: absolute;
|
|
65
58
|
top: 0;
|
|
@@ -80,7 +73,6 @@
|
|
|
80
73
|
Checkmark
|
|
81
74
|
---------------*/
|
|
82
75
|
|
|
83
|
-
.ui.checkbox .box:after,
|
|
84
76
|
.ui.checkbox label:after {
|
|
85
77
|
position: absolute;
|
|
86
78
|
font-size: 14px;
|
|
@@ -125,7 +117,6 @@
|
|
|
125
117
|
Hover
|
|
126
118
|
---------------*/
|
|
127
119
|
|
|
128
|
-
.ui.checkbox .box:hover::before,
|
|
129
120
|
.ui.checkbox label:hover::before {
|
|
130
121
|
background: #FFFFFF;
|
|
131
122
|
border-color: rgba(34, 36, 38, 0.35);
|
|
@@ -139,12 +130,10 @@
|
|
|
139
130
|
Down
|
|
140
131
|
---------------*/
|
|
141
132
|
|
|
142
|
-
.ui.checkbox .box:active::before,
|
|
143
133
|
.ui.checkbox label:active::before {
|
|
144
134
|
background: #F9FAFB;
|
|
145
135
|
border-color: rgba(34, 36, 38, 0.35);
|
|
146
136
|
}
|
|
147
|
-
.ui.checkbox .box:active::after,
|
|
148
137
|
.ui.checkbox label:active::after {
|
|
149
138
|
color: rgba(0, 0, 0, 0.95);
|
|
150
139
|
}
|
|
@@ -156,12 +145,10 @@
|
|
|
156
145
|
Focus
|
|
157
146
|
---------------*/
|
|
158
147
|
|
|
159
|
-
.ui.checkbox input:focus ~ .box:before,
|
|
160
148
|
.ui.checkbox input:focus ~ label:before {
|
|
161
149
|
background: #FFFFFF;
|
|
162
150
|
border-color: #96C8DA;
|
|
163
151
|
}
|
|
164
|
-
.ui.checkbox input:focus ~ .box:after,
|
|
165
152
|
.ui.checkbox input:focus ~ label:after {
|
|
166
153
|
color: rgba(0, 0, 0, 0.95);
|
|
167
154
|
}
|
|
@@ -173,27 +160,23 @@
|
|
|
173
160
|
Active
|
|
174
161
|
---------------*/
|
|
175
162
|
|
|
176
|
-
.ui.checkbox input:checked ~ .box:before,
|
|
177
163
|
.ui.checkbox input:checked ~ label:before {
|
|
178
164
|
background: #FFFFFF;
|
|
179
165
|
border-color: rgba(34, 36, 38, 0.35);
|
|
180
166
|
}
|
|
181
|
-
.ui.checkbox input:checked ~ .box:after,
|
|
182
167
|
.ui.checkbox input:checked ~ label:after {
|
|
183
168
|
opacity: 1;
|
|
184
169
|
color: rgba(0, 0, 0, 0.95);
|
|
185
170
|
}
|
|
186
171
|
|
|
187
172
|
/*--------------
|
|
188
|
-
|
|
189
|
-
---------------*/
|
|
173
|
+
Indeterminate
|
|
174
|
+
---------------*/
|
|
190
175
|
|
|
191
|
-
.ui.checkbox input:not([type=radio]):indeterminate ~ .box:before,
|
|
192
176
|
.ui.checkbox input:not([type=radio]):indeterminate ~ label:before {
|
|
193
177
|
background: #FFFFFF;
|
|
194
178
|
border-color: rgba(34, 36, 38, 0.35);
|
|
195
179
|
}
|
|
196
|
-
.ui.checkbox input:not([type=radio]):indeterminate ~ .box:after,
|
|
197
180
|
.ui.checkbox input:not([type=radio]):indeterminate ~ label:after {
|
|
198
181
|
opacity: 1;
|
|
199
182
|
color: rgba(0, 0, 0, 0.95);
|
|
@@ -209,16 +192,12 @@
|
|
|
209
192
|
Active Focus
|
|
210
193
|
---------------*/
|
|
211
194
|
|
|
212
|
-
.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:before,
|
|
213
195
|
.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:before,
|
|
214
|
-
.ui.checkbox input:checked:focus ~ .box:before,
|
|
215
196
|
.ui.checkbox input:checked:focus ~ label:before {
|
|
216
197
|
background: #FFFFFF;
|
|
217
198
|
border-color: #96C8DA;
|
|
218
199
|
}
|
|
219
|
-
.ui.checkbox input:not([type=radio]):indeterminate:focus ~ .box:after,
|
|
220
200
|
.ui.checkbox input:not([type=radio]):indeterminate:focus ~ label:after,
|
|
221
|
-
.ui.checkbox input:checked:focus ~ .box:after,
|
|
222
201
|
.ui.checkbox input:checked:focus ~ label:after {
|
|
223
202
|
color: rgba(0, 0, 0, 0.95);
|
|
224
203
|
}
|
|
@@ -233,16 +212,15 @@
|
|
|
233
212
|
}
|
|
234
213
|
|
|
235
214
|
/*--------------
|
|
236
|
-
|
|
237
|
-
---------------*/
|
|
215
|
+
Disabled
|
|
216
|
+
---------------*/
|
|
238
217
|
|
|
239
|
-
.ui.disabled.checkbox .box:after,
|
|
240
218
|
.ui.disabled.checkbox label,
|
|
241
|
-
.ui.checkbox input[disabled] ~ .box:after,
|
|
242
219
|
.ui.checkbox input[disabled] ~ label {
|
|
243
220
|
cursor: default !important;
|
|
244
221
|
opacity: 0.5;
|
|
245
222
|
color: #000000;
|
|
223
|
+
pointer-events: none;
|
|
246
224
|
}
|
|
247
225
|
|
|
248
226
|
/*--------------
|
|
@@ -272,19 +250,17 @@
|
|
|
272
250
|
|
|
273
251
|
|
|
274
252
|
/*--------------
|
|
275
|
-
|
|
276
|
-
---------------*/
|
|
253
|
+
Radio
|
|
254
|
+
---------------*/
|
|
277
255
|
|
|
278
256
|
.ui.radio.checkbox {
|
|
279
257
|
min-height: 15px;
|
|
280
258
|
}
|
|
281
|
-
.ui.radio.checkbox .box,
|
|
282
259
|
.ui.radio.checkbox label {
|
|
283
260
|
padding-left: 1.85714em;
|
|
284
261
|
}
|
|
285
262
|
|
|
286
263
|
/* Box */
|
|
287
|
-
.ui.radio.checkbox .box:before,
|
|
288
264
|
.ui.radio.checkbox label:before {
|
|
289
265
|
content: '';
|
|
290
266
|
-webkit-transform: none;
|
|
@@ -297,18 +273,10 @@
|
|
|
297
273
|
}
|
|
298
274
|
|
|
299
275
|
/* Bullet */
|
|
300
|
-
.ui.radio.checkbox .box:after,
|
|
301
276
|
.ui.radio.checkbox label:after {
|
|
302
277
|
border: none;
|
|
303
278
|
content: '' !important;
|
|
304
|
-
width: 15px;
|
|
305
|
-
height: 15px;
|
|
306
279
|
line-height: 15px;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
/* Radio Checkbox */
|
|
310
|
-
.ui.radio.checkbox .box:after,
|
|
311
|
-
.ui.radio.checkbox label:after {
|
|
312
280
|
top: 1px;
|
|
313
281
|
left: 0;
|
|
314
282
|
width: 15px;
|
|
@@ -320,44 +288,37 @@
|
|
|
320
288
|
}
|
|
321
289
|
|
|
322
290
|
/* Focus */
|
|
323
|
-
.ui.radio.checkbox input:focus ~ .box:before,
|
|
324
291
|
.ui.radio.checkbox input:focus ~ label:before {
|
|
325
292
|
background-color: #FFFFFF;
|
|
326
293
|
}
|
|
327
|
-
.ui.radio.checkbox input:focus ~ .box:after,
|
|
328
294
|
.ui.radio.checkbox input:focus ~ label:after {
|
|
329
295
|
background-color: rgba(0, 0, 0, 0.95);
|
|
330
296
|
}
|
|
331
297
|
|
|
332
298
|
/* Indeterminate */
|
|
333
|
-
.ui.radio.checkbox input:indeterminate ~ .box:after,
|
|
334
299
|
.ui.radio.checkbox input:indeterminate ~ label:after {
|
|
335
300
|
opacity: 0;
|
|
336
301
|
}
|
|
337
302
|
|
|
338
303
|
/* Active */
|
|
339
|
-
.ui.radio.checkbox input:checked ~ .box:before,
|
|
340
304
|
.ui.radio.checkbox input:checked ~ label:before {
|
|
341
305
|
background-color: #FFFFFF;
|
|
342
306
|
}
|
|
343
|
-
.ui.radio.checkbox input:checked ~ .box:after,
|
|
344
307
|
.ui.radio.checkbox input:checked ~ label:after {
|
|
345
308
|
background-color: rgba(0, 0, 0, 0.95);
|
|
346
309
|
}
|
|
347
310
|
|
|
348
311
|
/* Active Focus */
|
|
349
|
-
.ui.radio.checkbox input:focus:checked ~ .box:before,
|
|
350
312
|
.ui.radio.checkbox input:focus:checked ~ label:before {
|
|
351
313
|
background-color: #FFFFFF;
|
|
352
314
|
}
|
|
353
|
-
.ui.radio.checkbox input:focus:checked ~ .box:after,
|
|
354
315
|
.ui.radio.checkbox input:focus:checked ~ label:after {
|
|
355
316
|
background-color: rgba(0, 0, 0, 0.95);
|
|
356
317
|
}
|
|
357
318
|
|
|
358
319
|
/*--------------
|
|
359
|
-
|
|
360
|
-
---------------*/
|
|
320
|
+
Slider
|
|
321
|
+
---------------*/
|
|
361
322
|
|
|
362
323
|
.ui.slider.checkbox {
|
|
363
324
|
min-height: 1.25rem;
|
|
@@ -370,7 +331,6 @@
|
|
|
370
331
|
}
|
|
371
332
|
|
|
372
333
|
/* Label */
|
|
373
|
-
.ui.slider.checkbox .box,
|
|
374
334
|
.ui.slider.checkbox label {
|
|
375
335
|
padding-left: 4.5rem;
|
|
376
336
|
line-height: 1rem;
|
|
@@ -378,7 +338,6 @@
|
|
|
378
338
|
}
|
|
379
339
|
|
|
380
340
|
/* Line */
|
|
381
|
-
.ui.slider.checkbox .box:before,
|
|
382
341
|
.ui.slider.checkbox label:before {
|
|
383
342
|
display: block;
|
|
384
343
|
position: absolute;
|
|
@@ -398,7 +357,6 @@
|
|
|
398
357
|
}
|
|
399
358
|
|
|
400
359
|
/* Handle */
|
|
401
|
-
.ui.slider.checkbox .box:after,
|
|
402
360
|
.ui.slider.checkbox label:after {
|
|
403
361
|
background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
|
|
404
362
|
background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
|
@@ -422,49 +380,41 @@
|
|
|
422
380
|
}
|
|
423
381
|
|
|
424
382
|
/* Focus */
|
|
425
|
-
.ui.slider.checkbox input:focus ~ .box:before,
|
|
426
383
|
.ui.slider.checkbox input:focus ~ label:before {
|
|
427
384
|
background-color: rgba(0, 0, 0, 0.15);
|
|
428
385
|
border: none;
|
|
429
386
|
}
|
|
430
387
|
|
|
431
388
|
/* Hover */
|
|
432
|
-
.ui.slider.checkbox .box:hover,
|
|
433
389
|
.ui.slider.checkbox label:hover {
|
|
434
390
|
color: rgba(0, 0, 0, 0.8);
|
|
435
391
|
}
|
|
436
|
-
.ui.slider.checkbox .box:hover::before,
|
|
437
392
|
.ui.slider.checkbox label:hover::before {
|
|
438
393
|
background: rgba(0, 0, 0, 0.15);
|
|
439
394
|
}
|
|
440
395
|
|
|
441
396
|
/* Active */
|
|
442
|
-
.ui.slider.checkbox input:checked ~ .box,
|
|
443
397
|
.ui.slider.checkbox input:checked ~ label {
|
|
444
398
|
color: rgba(0, 0, 0, 0.95) !important;
|
|
445
399
|
}
|
|
446
|
-
.ui.slider.checkbox input:checked ~ .box:before,
|
|
447
400
|
.ui.slider.checkbox input:checked ~ label:before {
|
|
448
401
|
background-color: #545454 !important;
|
|
449
402
|
}
|
|
450
|
-
.ui.slider.checkbox input:checked ~ .box:after,
|
|
451
403
|
.ui.slider.checkbox input:checked ~ label:after {
|
|
452
404
|
left: 2rem;
|
|
453
405
|
}
|
|
454
406
|
|
|
455
407
|
/* Active Focus */
|
|
456
|
-
.ui.slider.checkbox input:focus:checked ~ .box,
|
|
457
408
|
.ui.slider.checkbox input:focus:checked ~ label {
|
|
458
409
|
color: rgba(0, 0, 0, 0.95) !important;
|
|
459
410
|
}
|
|
460
|
-
.ui.slider.checkbox input:focus:checked ~ .box:before,
|
|
461
411
|
.ui.slider.checkbox input:focus:checked ~ label:before {
|
|
462
412
|
background-color: #000000 !important;
|
|
463
413
|
}
|
|
464
414
|
|
|
465
415
|
/*--------------
|
|
466
|
-
|
|
467
|
-
---------------*/
|
|
416
|
+
Toggle
|
|
417
|
+
---------------*/
|
|
468
418
|
|
|
469
419
|
.ui.toggle.checkbox {
|
|
470
420
|
min-height: 1.5rem;
|
|
@@ -477,7 +427,6 @@
|
|
|
477
427
|
}
|
|
478
428
|
|
|
479
429
|
/* Label */
|
|
480
|
-
.ui.toggle.checkbox .box,
|
|
481
430
|
.ui.toggle.checkbox label {
|
|
482
431
|
min-height: 1.5rem;
|
|
483
432
|
padding-left: 4.5rem;
|
|
@@ -488,7 +437,6 @@
|
|
|
488
437
|
}
|
|
489
438
|
|
|
490
439
|
/* Switch */
|
|
491
|
-
.ui.toggle.checkbox .box:before,
|
|
492
440
|
.ui.toggle.checkbox label:before {
|
|
493
441
|
display: block;
|
|
494
442
|
position: absolute;
|
|
@@ -507,7 +455,6 @@
|
|
|
507
455
|
}
|
|
508
456
|
|
|
509
457
|
/* Handle */
|
|
510
|
-
.ui.toggle.checkbox .box:after,
|
|
511
458
|
.ui.toggle.checkbox label:after {
|
|
512
459
|
background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
|
|
513
460
|
background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
|
@@ -527,7 +474,6 @@
|
|
|
527
474
|
-webkit-transition: background 0.3s ease, left 0.3s ease;
|
|
528
475
|
transition: background 0.3s ease, left 0.3s ease;
|
|
529
476
|
}
|
|
530
|
-
.ui.toggle.checkbox input ~ .box:after,
|
|
531
477
|
.ui.toggle.checkbox input ~ label:after {
|
|
532
478
|
left: -0.05rem;
|
|
533
479
|
-webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
|
|
@@ -535,29 +481,24 @@
|
|
|
535
481
|
}
|
|
536
482
|
|
|
537
483
|
/* Focus */
|
|
538
|
-
.ui.toggle.checkbox input:focus ~ .box:before,
|
|
539
484
|
.ui.toggle.checkbox input:focus ~ label:before {
|
|
540
485
|
background-color: rgba(0, 0, 0, 0.15);
|
|
541
486
|
border: none;
|
|
542
487
|
}
|
|
543
488
|
|
|
544
489
|
/* Hover */
|
|
545
|
-
.ui.toggle.checkbox .box:hover::before,
|
|
546
490
|
.ui.toggle.checkbox label:hover::before {
|
|
547
491
|
background-color: rgba(0, 0, 0, 0.15);
|
|
548
492
|
border: none;
|
|
549
493
|
}
|
|
550
494
|
|
|
551
495
|
/* Active */
|
|
552
|
-
.ui.toggle.checkbox input:checked ~ .box,
|
|
553
496
|
.ui.toggle.checkbox input:checked ~ label {
|
|
554
497
|
color: rgba(0, 0, 0, 0.95) !important;
|
|
555
498
|
}
|
|
556
|
-
.ui.toggle.checkbox input:checked ~ .box:before,
|
|
557
499
|
.ui.toggle.checkbox input:checked ~ label:before {
|
|
558
500
|
background-color: #2185D0 !important;
|
|
559
501
|
}
|
|
560
|
-
.ui.toggle.checkbox input:checked ~ .box:after,
|
|
561
502
|
.ui.toggle.checkbox input:checked ~ label:after {
|
|
562
503
|
left: 2.15rem;
|
|
563
504
|
-webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
|
|
@@ -565,11 +506,9 @@
|
|
|
565
506
|
}
|
|
566
507
|
|
|
567
508
|
/* Active Focus */
|
|
568
|
-
.ui.toggle.checkbox input:focus:checked ~ .box,
|
|
569
509
|
.ui.toggle.checkbox input:focus:checked ~ label {
|
|
570
510
|
color: rgba(0, 0, 0, 0.95) !important;
|
|
571
511
|
}
|
|
572
|
-
.ui.toggle.checkbox input:focus:checked ~ .box:before,
|
|
573
512
|
.ui.toggle.checkbox input:focus:checked ~ label:before {
|
|
574
513
|
background-color: #0d71bb !important;
|
|
575
514
|
}
|
|
@@ -581,10 +520,9 @@
|
|
|
581
520
|
|
|
582
521
|
|
|
583
522
|
/*--------------
|
|
584
|
-
|
|
585
|
-
---------------*/
|
|
523
|
+
Fitted
|
|
524
|
+
---------------*/
|
|
586
525
|
|
|
587
|
-
.ui.fitted.checkbox .box,
|
|
588
526
|
.ui.fitted.checkbox label {
|
|
589
527
|
padding-left: 0 !important;
|
|
590
528
|
}
|
|
@@ -596,8 +534,8 @@
|
|
|
596
534
|
}
|
|
597
535
|
|
|
598
536
|
/*--------------
|
|
599
|
-
|
|
600
|
-
---------------*/
|
|
537
|
+
Inverted
|
|
538
|
+
---------------*/
|
|
601
539
|
|
|
602
540
|
.ui.inverted.checkbox label,
|
|
603
541
|
.ui.inverted.checkbox + label {
|
|
@@ -605,80 +543,65 @@
|
|
|
605
543
|
}
|
|
606
544
|
|
|
607
545
|
/* Hover */
|
|
608
|
-
.ui.inverted.checkbox .box:hover,
|
|
609
546
|
.ui.inverted.checkbox label:hover {
|
|
610
547
|
color: #ffffff !important;
|
|
611
548
|
}
|
|
612
|
-
.ui.inverted.checkbox .box:hover::before,
|
|
613
549
|
.ui.inverted.checkbox label:hover::before {
|
|
614
550
|
border-color: rgba(34, 36, 38, 0.5);
|
|
615
551
|
}
|
|
616
552
|
/*Slider Label */
|
|
617
|
-
.ui.inverted.slider.checkbox .box,
|
|
618
553
|
.ui.inverted.slider.checkbox label {
|
|
619
554
|
color: rgba(255, 255, 255, 0.5);
|
|
620
555
|
}
|
|
621
556
|
|
|
622
557
|
/* Slider Line */
|
|
623
|
-
.ui.inverted.slider.checkbox .box:before,
|
|
624
558
|
.ui.inverted.slider.checkbox label:before {
|
|
625
559
|
background-color: rgba(255, 255, 255, 0.5) !important;
|
|
626
560
|
}
|
|
627
561
|
|
|
628
562
|
/* Slider Hover */
|
|
629
|
-
.ui.inverted.slider.checkbox .box:hover::before,
|
|
630
563
|
.ui.inverted.slider.checkbox label:hover::before {
|
|
631
564
|
background: rgba(255, 255, 255, 0.7) !important;
|
|
632
565
|
}
|
|
633
566
|
|
|
634
567
|
/* Slider Active */
|
|
635
|
-
.ui.inverted.slider.checkbox input:checked ~ .box,
|
|
636
568
|
.ui.inverted.slider.checkbox input:checked ~ label {
|
|
637
569
|
color: #ffffff !important;
|
|
638
570
|
}
|
|
639
|
-
.ui.inverted.slider.checkbox input:checked ~ .box:before,
|
|
640
571
|
.ui.inverted.slider.checkbox input:checked ~ label:before {
|
|
641
572
|
background-color: rgba(255, 255, 255, 0.8) !important;
|
|
642
573
|
}
|
|
643
574
|
|
|
644
575
|
/* Slider Active Focus */
|
|
645
|
-
.ui.inverted.slider.checkbox input:focus:checked ~ .box,
|
|
646
576
|
.ui.inverted.slider.checkbox input:focus:checked ~ label {
|
|
647
577
|
color: #ffffff !important;
|
|
648
578
|
}
|
|
649
|
-
.ui.inverted.slider.checkbox input:focus:checked ~ .box:before,
|
|
650
579
|
.ui.inverted.slider.checkbox input:focus:checked ~ label:before {
|
|
651
580
|
background-color: rgba(255, 255, 255, 0.8) !important;
|
|
652
581
|
}
|
|
653
582
|
|
|
654
583
|
/* Toggle Switch */
|
|
655
|
-
.ui.inverted.toggle.checkbox .box:before,
|
|
656
584
|
.ui.inverted.toggle.checkbox label:before {
|
|
657
585
|
background-color: rgba(255, 255, 255, 0.9) !important;
|
|
658
586
|
}
|
|
659
587
|
|
|
660
588
|
/* Toggle Hover */
|
|
661
|
-
.ui.inverted.toggle.checkbox .box:hover::before,
|
|
662
589
|
.ui.inverted.toggle.checkbox label:hover::before {
|
|
663
590
|
background: #ffffff !important;
|
|
664
591
|
}
|
|
665
592
|
|
|
666
593
|
/* Toggle Active */
|
|
667
|
-
.ui.inverted.toggle.checkbox input:checked ~ .box,
|
|
668
594
|
.ui.inverted.toggle.checkbox input:checked ~ label {
|
|
669
595
|
color: #ffffff !important;
|
|
670
596
|
}
|
|
671
|
-
.ui.inverted.toggle.checkbox input:checked ~ .box:before,
|
|
672
597
|
.ui.inverted.toggle.checkbox input:checked ~ label:before {
|
|
673
598
|
background-color: #2185D0 !important;
|
|
674
599
|
}
|
|
675
600
|
|
|
676
601
|
/* Toggle Active Focus */
|
|
677
|
-
.ui.inverted.toggle.checkbox input:focus:checked ~ .box,
|
|
678
602
|
.ui.inverted.toggle.checkbox input:focus:checked ~ label {
|
|
679
603
|
color: #ffffff !important;
|
|
680
604
|
}
|
|
681
|
-
.ui.inverted.toggle.checkbox input:focus:checked ~ .box:before,
|
|
682
605
|
.ui.inverted.toggle.checkbox input:focus:checked ~ label:before {
|
|
683
606
|
background-color: #0d71bb !important;
|
|
684
607
|
}
|
|
@@ -699,10 +622,6 @@
|
|
|
699
622
|
.ui.large.checkbox {
|
|
700
623
|
font-size: 1.14285714em;
|
|
701
624
|
}
|
|
702
|
-
.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
703
|
-
.ui.large.checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
704
|
-
.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
705
|
-
.ui.large.checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
706
625
|
.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
707
626
|
.ui.large.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
708
627
|
.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
|
@@ -712,8 +631,6 @@
|
|
|
712
631
|
-webkit-transform-origin: left;
|
|
713
632
|
transform-origin: left;
|
|
714
633
|
}
|
|
715
|
-
.ui.large.form .checkbox.radio .box:before,
|
|
716
|
-
.ui.large.checkbox.radio .box:before,
|
|
717
634
|
.ui.large.form .checkbox.radio label:before,
|
|
718
635
|
.ui.large.checkbox.radio label:before {
|
|
719
636
|
-webkit-transform: scale(1.14285714);
|
|
@@ -721,8 +638,6 @@
|
|
|
721
638
|
-webkit-transform-origin: left;
|
|
722
639
|
transform-origin: left;
|
|
723
640
|
}
|
|
724
|
-
.ui.large.form .checkbox.radio .box:after,
|
|
725
|
-
.ui.large.checkbox.radio .box:after,
|
|
726
641
|
.ui.large.form .checkbox.radio label:after,
|
|
727
642
|
.ui.large.checkbox.radio label:after {
|
|
728
643
|
-webkit-transform: scale(0.57142857);
|
|
@@ -734,10 +649,6 @@
|
|
|
734
649
|
.ui.big.checkbox {
|
|
735
650
|
font-size: 1.28571429em;
|
|
736
651
|
}
|
|
737
|
-
.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
738
|
-
.ui.big.checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
739
|
-
.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
740
|
-
.ui.big.checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
741
652
|
.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
742
653
|
.ui.big.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
743
654
|
.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
|
@@ -747,8 +658,6 @@
|
|
|
747
658
|
-webkit-transform-origin: left;
|
|
748
659
|
transform-origin: left;
|
|
749
660
|
}
|
|
750
|
-
.ui.big.form .checkbox.radio .box:before,
|
|
751
|
-
.ui.big.checkbox.radio .box:before,
|
|
752
661
|
.ui.big.form .checkbox.radio label:before,
|
|
753
662
|
.ui.big.checkbox.radio label:before {
|
|
754
663
|
-webkit-transform: scale(1.28571429);
|
|
@@ -756,8 +665,6 @@
|
|
|
756
665
|
-webkit-transform-origin: left;
|
|
757
666
|
transform-origin: left;
|
|
758
667
|
}
|
|
759
|
-
.ui.big.form .checkbox.radio .box:after,
|
|
760
|
-
.ui.big.checkbox.radio .box:after,
|
|
761
668
|
.ui.big.form .checkbox.radio label:after,
|
|
762
669
|
.ui.big.checkbox.radio label:after {
|
|
763
670
|
-webkit-transform: scale(0.64285714);
|
|
@@ -769,10 +676,6 @@
|
|
|
769
676
|
.ui.huge.checkbox {
|
|
770
677
|
font-size: 1.42857143em;
|
|
771
678
|
}
|
|
772
|
-
.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
773
|
-
.ui.huge.checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
774
|
-
.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
775
|
-
.ui.huge.checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
776
679
|
.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
777
680
|
.ui.huge.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
778
681
|
.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
|
@@ -782,8 +685,6 @@
|
|
|
782
685
|
-webkit-transform-origin: left;
|
|
783
686
|
transform-origin: left;
|
|
784
687
|
}
|
|
785
|
-
.ui.huge.form .checkbox.radio .box:before,
|
|
786
|
-
.ui.huge.checkbox.radio .box:before,
|
|
787
688
|
.ui.huge.form .checkbox.radio label:before,
|
|
788
689
|
.ui.huge.checkbox.radio label:before {
|
|
789
690
|
-webkit-transform: scale(1.42857143);
|
|
@@ -791,8 +692,6 @@
|
|
|
791
692
|
-webkit-transform-origin: left;
|
|
792
693
|
transform-origin: left;
|
|
793
694
|
}
|
|
794
|
-
.ui.huge.form .checkbox.radio .box:after,
|
|
795
|
-
.ui.huge.checkbox.radio .box:after,
|
|
796
695
|
.ui.huge.form .checkbox.radio label:after,
|
|
797
696
|
.ui.huge.checkbox.radio label:after {
|
|
798
697
|
-webkit-transform: scale(0.71428571);
|
|
@@ -804,10 +703,6 @@
|
|
|
804
703
|
.ui.massive.checkbox {
|
|
805
704
|
font-size: 1.71428571em;
|
|
806
705
|
}
|
|
807
|
-
.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
808
|
-
.ui.massive.checkbox:not(.slider):not(.toggle):not(.radio) .box:after,
|
|
809
|
-
.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
810
|
-
.ui.massive.checkbox:not(.slider):not(.toggle):not(.radio) .box:before,
|
|
811
706
|
.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
812
707
|
.ui.massive.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
|
813
708
|
.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
|
@@ -817,8 +712,6 @@
|
|
|
817
712
|
-webkit-transform-origin: left;
|
|
818
713
|
transform-origin: left;
|
|
819
714
|
}
|
|
820
|
-
.ui.massive.form .checkbox.radio .box:before,
|
|
821
|
-
.ui.massive.checkbox.radio .box:before,
|
|
822
715
|
.ui.massive.form .checkbox.radio label:before,
|
|
823
716
|
.ui.massive.checkbox.radio label:before {
|
|
824
717
|
-webkit-transform: scale(1.71428571);
|
|
@@ -826,8 +719,6 @@
|
|
|
826
719
|
-webkit-transform-origin: left;
|
|
827
720
|
transform-origin: left;
|
|
828
721
|
}
|
|
829
|
-
.ui.massive.form .checkbox.radio .box:after,
|
|
830
|
-
.ui.massive.checkbox.radio .box:after,
|
|
831
722
|
.ui.massive.form .checkbox.radio label:after,
|
|
832
723
|
.ui.massive.checkbox.radio label:after {
|
|
833
724
|
-webkit-transform: scale(0.85714286);
|