fomantic-ui-sass 2.7.8 → 2.8.1
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 +4 -0
- data/app/assets/javascripts/semantic-ui/api.js +1 -1
- data/app/assets/javascripts/semantic-ui/calendar.js +41 -18
- data/app/assets/javascripts/semantic-ui/dropdown.js +58 -33
- data/app/assets/javascripts/semantic-ui/form.js +9 -4
- data/app/assets/javascripts/semantic-ui/modal.js +96 -33
- data/app/assets/javascripts/semantic-ui/popup.js +8 -8
- 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/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 +395 -121
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +741 -143
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +73 -117
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +976 -191
- 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 +12312 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +111 -66
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +70 -31
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +28 -28
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +218 -69
- 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 +38 -38
- 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 +14 -124
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +21 -21
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +181 -110
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +121 -30
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +71 -72
- 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 +2 -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/lib/fomantic/ui/sass/version.rb +2 -2
- metadata +2 -1
@@ -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,12 +212,10 @@
|
|
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;
|
@@ -272,19 +249,17 @@
|
|
272
249
|
|
273
250
|
|
274
251
|
/*--------------
|
275
|
-
|
276
|
-
---------------*/
|
252
|
+
Radio
|
253
|
+
---------------*/
|
277
254
|
|
278
255
|
.ui.radio.checkbox {
|
279
256
|
min-height: 15px;
|
280
257
|
}
|
281
|
-
.ui.radio.checkbox .box,
|
282
258
|
.ui.radio.checkbox label {
|
283
259
|
padding-left: 1.85714em;
|
284
260
|
}
|
285
261
|
|
286
262
|
/* Box */
|
287
|
-
.ui.radio.checkbox .box:before,
|
288
263
|
.ui.radio.checkbox label:before {
|
289
264
|
content: '';
|
290
265
|
-webkit-transform: none;
|
@@ -297,18 +272,10 @@
|
|
297
272
|
}
|
298
273
|
|
299
274
|
/* Bullet */
|
300
|
-
.ui.radio.checkbox .box:after,
|
301
275
|
.ui.radio.checkbox label:after {
|
302
276
|
border: none;
|
303
277
|
content: '' !important;
|
304
|
-
width: 15px;
|
305
|
-
height: 15px;
|
306
278
|
line-height: 15px;
|
307
|
-
}
|
308
|
-
|
309
|
-
/* Radio Checkbox */
|
310
|
-
.ui.radio.checkbox .box:after,
|
311
|
-
.ui.radio.checkbox label:after {
|
312
279
|
top: 1px;
|
313
280
|
left: 0;
|
314
281
|
width: 15px;
|
@@ -320,44 +287,37 @@
|
|
320
287
|
}
|
321
288
|
|
322
289
|
/* Focus */
|
323
|
-
.ui.radio.checkbox input:focus ~ .box:before,
|
324
290
|
.ui.radio.checkbox input:focus ~ label:before {
|
325
291
|
background-color: #FFFFFF;
|
326
292
|
}
|
327
|
-
.ui.radio.checkbox input:focus ~ .box:after,
|
328
293
|
.ui.radio.checkbox input:focus ~ label:after {
|
329
294
|
background-color: rgba(0, 0, 0, 0.95);
|
330
295
|
}
|
331
296
|
|
332
297
|
/* Indeterminate */
|
333
|
-
.ui.radio.checkbox input:indeterminate ~ .box:after,
|
334
298
|
.ui.radio.checkbox input:indeterminate ~ label:after {
|
335
299
|
opacity: 0;
|
336
300
|
}
|
337
301
|
|
338
302
|
/* Active */
|
339
|
-
.ui.radio.checkbox input:checked ~ .box:before,
|
340
303
|
.ui.radio.checkbox input:checked ~ label:before {
|
341
304
|
background-color: #FFFFFF;
|
342
305
|
}
|
343
|
-
.ui.radio.checkbox input:checked ~ .box:after,
|
344
306
|
.ui.radio.checkbox input:checked ~ label:after {
|
345
307
|
background-color: rgba(0, 0, 0, 0.95);
|
346
308
|
}
|
347
309
|
|
348
310
|
/* Active Focus */
|
349
|
-
.ui.radio.checkbox input:focus:checked ~ .box:before,
|
350
311
|
.ui.radio.checkbox input:focus:checked ~ label:before {
|
351
312
|
background-color: #FFFFFF;
|
352
313
|
}
|
353
|
-
.ui.radio.checkbox input:focus:checked ~ .box:after,
|
354
314
|
.ui.radio.checkbox input:focus:checked ~ label:after {
|
355
315
|
background-color: rgba(0, 0, 0, 0.95);
|
356
316
|
}
|
357
317
|
|
358
318
|
/*--------------
|
359
|
-
|
360
|
-
---------------*/
|
319
|
+
Slider
|
320
|
+
---------------*/
|
361
321
|
|
362
322
|
.ui.slider.checkbox {
|
363
323
|
min-height: 1.25rem;
|
@@ -370,7 +330,6 @@
|
|
370
330
|
}
|
371
331
|
|
372
332
|
/* Label */
|
373
|
-
.ui.slider.checkbox .box,
|
374
333
|
.ui.slider.checkbox label {
|
375
334
|
padding-left: 4.5rem;
|
376
335
|
line-height: 1rem;
|
@@ -378,7 +337,6 @@
|
|
378
337
|
}
|
379
338
|
|
380
339
|
/* Line */
|
381
|
-
.ui.slider.checkbox .box:before,
|
382
340
|
.ui.slider.checkbox label:before {
|
383
341
|
display: block;
|
384
342
|
position: absolute;
|
@@ -398,7 +356,6 @@
|
|
398
356
|
}
|
399
357
|
|
400
358
|
/* Handle */
|
401
|
-
.ui.slider.checkbox .box:after,
|
402
359
|
.ui.slider.checkbox label:after {
|
403
360
|
background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
|
404
361
|
background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
@@ -422,49 +379,41 @@
|
|
422
379
|
}
|
423
380
|
|
424
381
|
/* Focus */
|
425
|
-
.ui.slider.checkbox input:focus ~ .box:before,
|
426
382
|
.ui.slider.checkbox input:focus ~ label:before {
|
427
383
|
background-color: rgba(0, 0, 0, 0.15);
|
428
384
|
border: none;
|
429
385
|
}
|
430
386
|
|
431
387
|
/* Hover */
|
432
|
-
.ui.slider.checkbox .box:hover,
|
433
388
|
.ui.slider.checkbox label:hover {
|
434
389
|
color: rgba(0, 0, 0, 0.8);
|
435
390
|
}
|
436
|
-
.ui.slider.checkbox .box:hover::before,
|
437
391
|
.ui.slider.checkbox label:hover::before {
|
438
392
|
background: rgba(0, 0, 0, 0.15);
|
439
393
|
}
|
440
394
|
|
441
395
|
/* Active */
|
442
|
-
.ui.slider.checkbox input:checked ~ .box,
|
443
396
|
.ui.slider.checkbox input:checked ~ label {
|
444
397
|
color: rgba(0, 0, 0, 0.95) !important;
|
445
398
|
}
|
446
|
-
.ui.slider.checkbox input:checked ~ .box:before,
|
447
399
|
.ui.slider.checkbox input:checked ~ label:before {
|
448
400
|
background-color: #545454 !important;
|
449
401
|
}
|
450
|
-
.ui.slider.checkbox input:checked ~ .box:after,
|
451
402
|
.ui.slider.checkbox input:checked ~ label:after {
|
452
403
|
left: 2rem;
|
453
404
|
}
|
454
405
|
|
455
406
|
/* Active Focus */
|
456
|
-
.ui.slider.checkbox input:focus:checked ~ .box,
|
457
407
|
.ui.slider.checkbox input:focus:checked ~ label {
|
458
408
|
color: rgba(0, 0, 0, 0.95) !important;
|
459
409
|
}
|
460
|
-
.ui.slider.checkbox input:focus:checked ~ .box:before,
|
461
410
|
.ui.slider.checkbox input:focus:checked ~ label:before {
|
462
411
|
background-color: #000000 !important;
|
463
412
|
}
|
464
413
|
|
465
414
|
/*--------------
|
466
|
-
|
467
|
-
---------------*/
|
415
|
+
Toggle
|
416
|
+
---------------*/
|
468
417
|
|
469
418
|
.ui.toggle.checkbox {
|
470
419
|
min-height: 1.5rem;
|
@@ -477,7 +426,6 @@
|
|
477
426
|
}
|
478
427
|
|
479
428
|
/* Label */
|
480
|
-
.ui.toggle.checkbox .box,
|
481
429
|
.ui.toggle.checkbox label {
|
482
430
|
min-height: 1.5rem;
|
483
431
|
padding-left: 4.5rem;
|
@@ -488,7 +436,6 @@
|
|
488
436
|
}
|
489
437
|
|
490
438
|
/* Switch */
|
491
|
-
.ui.toggle.checkbox .box:before,
|
492
439
|
.ui.toggle.checkbox label:before {
|
493
440
|
display: block;
|
494
441
|
position: absolute;
|
@@ -507,7 +454,6 @@
|
|
507
454
|
}
|
508
455
|
|
509
456
|
/* Handle */
|
510
|
-
.ui.toggle.checkbox .box:after,
|
511
457
|
.ui.toggle.checkbox label:after {
|
512
458
|
background: #FFFFFF -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
|
513
459
|
background: #FFFFFF -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
@@ -527,7 +473,6 @@
|
|
527
473
|
-webkit-transition: background 0.3s ease, left 0.3s ease;
|
528
474
|
transition: background 0.3s ease, left 0.3s ease;
|
529
475
|
}
|
530
|
-
.ui.toggle.checkbox input ~ .box:after,
|
531
476
|
.ui.toggle.checkbox input ~ label:after {
|
532
477
|
left: -0.05rem;
|
533
478
|
-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 +480,24 @@
|
|
535
480
|
}
|
536
481
|
|
537
482
|
/* Focus */
|
538
|
-
.ui.toggle.checkbox input:focus ~ .box:before,
|
539
483
|
.ui.toggle.checkbox input:focus ~ label:before {
|
540
484
|
background-color: rgba(0, 0, 0, 0.15);
|
541
485
|
border: none;
|
542
486
|
}
|
543
487
|
|
544
488
|
/* Hover */
|
545
|
-
.ui.toggle.checkbox .box:hover::before,
|
546
489
|
.ui.toggle.checkbox label:hover::before {
|
547
490
|
background-color: rgba(0, 0, 0, 0.15);
|
548
491
|
border: none;
|
549
492
|
}
|
550
493
|
|
551
494
|
/* Active */
|
552
|
-
.ui.toggle.checkbox input:checked ~ .box,
|
553
495
|
.ui.toggle.checkbox input:checked ~ label {
|
554
496
|
color: rgba(0, 0, 0, 0.95) !important;
|
555
497
|
}
|
556
|
-
.ui.toggle.checkbox input:checked ~ .box:before,
|
557
498
|
.ui.toggle.checkbox input:checked ~ label:before {
|
558
499
|
background-color: #2185D0 !important;
|
559
500
|
}
|
560
|
-
.ui.toggle.checkbox input:checked ~ .box:after,
|
561
501
|
.ui.toggle.checkbox input:checked ~ label:after {
|
562
502
|
left: 2.15rem;
|
563
503
|
-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 +505,9 @@
|
|
565
505
|
}
|
566
506
|
|
567
507
|
/* Active Focus */
|
568
|
-
.ui.toggle.checkbox input:focus:checked ~ .box,
|
569
508
|
.ui.toggle.checkbox input:focus:checked ~ label {
|
570
509
|
color: rgba(0, 0, 0, 0.95) !important;
|
571
510
|
}
|
572
|
-
.ui.toggle.checkbox input:focus:checked ~ .box:before,
|
573
511
|
.ui.toggle.checkbox input:focus:checked ~ label:before {
|
574
512
|
background-color: #0d71bb !important;
|
575
513
|
}
|
@@ -581,10 +519,9 @@
|
|
581
519
|
|
582
520
|
|
583
521
|
/*--------------
|
584
|
-
|
585
|
-
---------------*/
|
522
|
+
Fitted
|
523
|
+
---------------*/
|
586
524
|
|
587
|
-
.ui.fitted.checkbox .box,
|
588
525
|
.ui.fitted.checkbox label {
|
589
526
|
padding-left: 0 !important;
|
590
527
|
}
|
@@ -596,8 +533,8 @@
|
|
596
533
|
}
|
597
534
|
|
598
535
|
/*--------------
|
599
|
-
|
600
|
-
---------------*/
|
536
|
+
Inverted
|
537
|
+
---------------*/
|
601
538
|
|
602
539
|
.ui.inverted.checkbox label,
|
603
540
|
.ui.inverted.checkbox + label {
|
@@ -605,80 +542,65 @@
|
|
605
542
|
}
|
606
543
|
|
607
544
|
/* Hover */
|
608
|
-
.ui.inverted.checkbox .box:hover,
|
609
545
|
.ui.inverted.checkbox label:hover {
|
610
546
|
color: #ffffff !important;
|
611
547
|
}
|
612
|
-
.ui.inverted.checkbox .box:hover::before,
|
613
548
|
.ui.inverted.checkbox label:hover::before {
|
614
549
|
border-color: rgba(34, 36, 38, 0.5);
|
615
550
|
}
|
616
551
|
/*Slider Label */
|
617
|
-
.ui.inverted.slider.checkbox .box,
|
618
552
|
.ui.inverted.slider.checkbox label {
|
619
553
|
color: rgba(255, 255, 255, 0.5);
|
620
554
|
}
|
621
555
|
|
622
556
|
/* Slider Line */
|
623
|
-
.ui.inverted.slider.checkbox .box:before,
|
624
557
|
.ui.inverted.slider.checkbox label:before {
|
625
558
|
background-color: rgba(255, 255, 255, 0.5) !important;
|
626
559
|
}
|
627
560
|
|
628
561
|
/* Slider Hover */
|
629
|
-
.ui.inverted.slider.checkbox .box:hover::before,
|
630
562
|
.ui.inverted.slider.checkbox label:hover::before {
|
631
563
|
background: rgba(255, 255, 255, 0.7) !important;
|
632
564
|
}
|
633
565
|
|
634
566
|
/* Slider Active */
|
635
|
-
.ui.inverted.slider.checkbox input:checked ~ .box,
|
636
567
|
.ui.inverted.slider.checkbox input:checked ~ label {
|
637
568
|
color: #ffffff !important;
|
638
569
|
}
|
639
|
-
.ui.inverted.slider.checkbox input:checked ~ .box:before,
|
640
570
|
.ui.inverted.slider.checkbox input:checked ~ label:before {
|
641
571
|
background-color: rgba(255, 255, 255, 0.8) !important;
|
642
572
|
}
|
643
573
|
|
644
574
|
/* Slider Active Focus */
|
645
|
-
.ui.inverted.slider.checkbox input:focus:checked ~ .box,
|
646
575
|
.ui.inverted.slider.checkbox input:focus:checked ~ label {
|
647
576
|
color: #ffffff !important;
|
648
577
|
}
|
649
|
-
.ui.inverted.slider.checkbox input:focus:checked ~ .box:before,
|
650
578
|
.ui.inverted.slider.checkbox input:focus:checked ~ label:before {
|
651
579
|
background-color: rgba(255, 255, 255, 0.8) !important;
|
652
580
|
}
|
653
581
|
|
654
582
|
/* Toggle Switch */
|
655
|
-
.ui.inverted.toggle.checkbox .box:before,
|
656
583
|
.ui.inverted.toggle.checkbox label:before {
|
657
584
|
background-color: rgba(255, 255, 255, 0.9) !important;
|
658
585
|
}
|
659
586
|
|
660
587
|
/* Toggle Hover */
|
661
|
-
.ui.inverted.toggle.checkbox .box:hover::before,
|
662
588
|
.ui.inverted.toggle.checkbox label:hover::before {
|
663
589
|
background: #ffffff !important;
|
664
590
|
}
|
665
591
|
|
666
592
|
/* Toggle Active */
|
667
|
-
.ui.inverted.toggle.checkbox input:checked ~ .box,
|
668
593
|
.ui.inverted.toggle.checkbox input:checked ~ label {
|
669
594
|
color: #ffffff !important;
|
670
595
|
}
|
671
|
-
.ui.inverted.toggle.checkbox input:checked ~ .box:before,
|
672
596
|
.ui.inverted.toggle.checkbox input:checked ~ label:before {
|
673
597
|
background-color: #2185D0 !important;
|
674
598
|
}
|
675
599
|
|
676
600
|
/* Toggle Active Focus */
|
677
|
-
.ui.inverted.toggle.checkbox input:focus:checked ~ .box,
|
678
601
|
.ui.inverted.toggle.checkbox input:focus:checked ~ label {
|
679
602
|
color: #ffffff !important;
|
680
603
|
}
|
681
|
-
.ui.inverted.toggle.checkbox input:focus:checked ~ .box:before,
|
682
604
|
.ui.inverted.toggle.checkbox input:focus:checked ~ label:before {
|
683
605
|
background-color: #0d71bb !important;
|
684
606
|
}
|
@@ -699,10 +621,6 @@
|
|
699
621
|
.ui.large.checkbox {
|
700
622
|
font-size: 1.14285714em;
|
701
623
|
}
|
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
624
|
.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
707
625
|
.ui.large.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
708
626
|
.ui.large.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
@@ -712,8 +630,6 @@
|
|
712
630
|
-webkit-transform-origin: left;
|
713
631
|
transform-origin: left;
|
714
632
|
}
|
715
|
-
.ui.large.form .checkbox.radio .box:before,
|
716
|
-
.ui.large.checkbox.radio .box:before,
|
717
633
|
.ui.large.form .checkbox.radio label:before,
|
718
634
|
.ui.large.checkbox.radio label:before {
|
719
635
|
-webkit-transform: scale(1.14285714);
|
@@ -721,8 +637,6 @@
|
|
721
637
|
-webkit-transform-origin: left;
|
722
638
|
transform-origin: left;
|
723
639
|
}
|
724
|
-
.ui.large.form .checkbox.radio .box:after,
|
725
|
-
.ui.large.checkbox.radio .box:after,
|
726
640
|
.ui.large.form .checkbox.radio label:after,
|
727
641
|
.ui.large.checkbox.radio label:after {
|
728
642
|
-webkit-transform: scale(0.57142857);
|
@@ -734,10 +648,6 @@
|
|
734
648
|
.ui.big.checkbox {
|
735
649
|
font-size: 1.28571429em;
|
736
650
|
}
|
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
651
|
.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
742
652
|
.ui.big.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
743
653
|
.ui.big.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
@@ -747,8 +657,6 @@
|
|
747
657
|
-webkit-transform-origin: left;
|
748
658
|
transform-origin: left;
|
749
659
|
}
|
750
|
-
.ui.big.form .checkbox.radio .box:before,
|
751
|
-
.ui.big.checkbox.radio .box:before,
|
752
660
|
.ui.big.form .checkbox.radio label:before,
|
753
661
|
.ui.big.checkbox.radio label:before {
|
754
662
|
-webkit-transform: scale(1.28571429);
|
@@ -756,8 +664,6 @@
|
|
756
664
|
-webkit-transform-origin: left;
|
757
665
|
transform-origin: left;
|
758
666
|
}
|
759
|
-
.ui.big.form .checkbox.radio .box:after,
|
760
|
-
.ui.big.checkbox.radio .box:after,
|
761
667
|
.ui.big.form .checkbox.radio label:after,
|
762
668
|
.ui.big.checkbox.radio label:after {
|
763
669
|
-webkit-transform: scale(0.64285714);
|
@@ -769,10 +675,6 @@
|
|
769
675
|
.ui.huge.checkbox {
|
770
676
|
font-size: 1.42857143em;
|
771
677
|
}
|
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
678
|
.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
777
679
|
.ui.huge.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
778
680
|
.ui.huge.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
@@ -782,8 +684,6 @@
|
|
782
684
|
-webkit-transform-origin: left;
|
783
685
|
transform-origin: left;
|
784
686
|
}
|
785
|
-
.ui.huge.form .checkbox.radio .box:before,
|
786
|
-
.ui.huge.checkbox.radio .box:before,
|
787
687
|
.ui.huge.form .checkbox.radio label:before,
|
788
688
|
.ui.huge.checkbox.radio label:before {
|
789
689
|
-webkit-transform: scale(1.42857143);
|
@@ -791,8 +691,6 @@
|
|
791
691
|
-webkit-transform-origin: left;
|
792
692
|
transform-origin: left;
|
793
693
|
}
|
794
|
-
.ui.huge.form .checkbox.radio .box:after,
|
795
|
-
.ui.huge.checkbox.radio .box:after,
|
796
694
|
.ui.huge.form .checkbox.radio label:after,
|
797
695
|
.ui.huge.checkbox.radio label:after {
|
798
696
|
-webkit-transform: scale(0.71428571);
|
@@ -804,10 +702,6 @@
|
|
804
702
|
.ui.massive.checkbox {
|
805
703
|
font-size: 1.71428571em;
|
806
704
|
}
|
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
705
|
.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
812
706
|
.ui.massive.checkbox:not(.slider):not(.toggle):not(.radio) label:after,
|
813
707
|
.ui.massive.form .checkbox:not(.slider):not(.toggle):not(.radio) label:before,
|
@@ -817,8 +711,6 @@
|
|
817
711
|
-webkit-transform-origin: left;
|
818
712
|
transform-origin: left;
|
819
713
|
}
|
820
|
-
.ui.massive.form .checkbox.radio .box:before,
|
821
|
-
.ui.massive.checkbox.radio .box:before,
|
822
714
|
.ui.massive.form .checkbox.radio label:before,
|
823
715
|
.ui.massive.checkbox.radio label:before {
|
824
716
|
-webkit-transform: scale(1.71428571);
|
@@ -826,8 +718,6 @@
|
|
826
718
|
-webkit-transform-origin: left;
|
827
719
|
transform-origin: left;
|
828
720
|
}
|
829
|
-
.ui.massive.form .checkbox.radio .box:after,
|
830
|
-
.ui.massive.checkbox.radio .box:after,
|
831
721
|
.ui.massive.form .checkbox.radio label:after,
|
832
722
|
.ui.massive.checkbox.radio label:after {
|
833
723
|
-webkit-transform: scale(0.85714286);
|