fomantic-ui-sass 2.8.6 → 2.8.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/README.md +6 -0
  4. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/brand-icons.svg +6 -41
  6. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  7. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  8. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  9. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  10. data/app/assets/fonts/semantic-ui/icons.svg +7 -245
  11. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  14. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  15. data/app/assets/fonts/semantic-ui/outline-icons.svg +2 -2
  16. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  17. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  18. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  19. data/app/assets/javascripts/semantic-ui/calendar.js +153 -29
  20. data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
  21. data/app/assets/javascripts/semantic-ui/dimmer.js +11 -14
  22. data/app/assets/javascripts/semantic-ui/dropdown.js +240 -112
  23. data/app/assets/javascripts/semantic-ui/form.js +131 -67
  24. data/app/assets/javascripts/semantic-ui/modal.js +259 -16
  25. data/app/assets/javascripts/semantic-ui/nag.js +130 -64
  26. data/app/assets/javascripts/semantic-ui/popup.js +4 -4
  27. data/app/assets/javascripts/semantic-ui/progress.js +25 -31
  28. data/app/assets/javascripts/semantic-ui/search.js +15 -12
  29. data/app/assets/javascripts/semantic-ui/slider.js +57 -33
  30. data/app/assets/javascripts/semantic-ui/toast.js +26 -6
  31. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  32. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +69 -74
  33. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +14 -7
  34. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +14 -11
  35. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +52 -5
  36. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +9 -5
  37. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
  38. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +29 -2
  39. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +3 -4
  40. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  42. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +14 -9
  43. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +244 -66
  44. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +34 -5
  45. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +34 -33
  46. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +13 -13
  48. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +41 -37
  49. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +1 -1
  50. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  52. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +40 -2
  53. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +10 -10
  54. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +13 -1
  55. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +2 -3
  56. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +2 -2
  57. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  58. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +18 -11
  59. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +46 -4
  60. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +15 -15
  61. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +180 -28
  62. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +7 -7
  63. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +22 -11
  64. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +168 -16
  65. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +6 -2
  66. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +18 -10
  67. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +18 -33
  68. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  69. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  70. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +3 -2
  71. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +11 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -2
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  74. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +103 -16
  75. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  77. data/app/assets/stylesheets/semantic-ui/views/_card.scss +75 -3
  78. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  79. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +6 -6
  80. data/app/assets/stylesheets/semantic-ui/views/_item.scss +1 -1
  81. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +5 -5
  82. data/lib/fomantic/ui/sass/version.rb +2 -2
  83. metadata +3 -3
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Segment
2
+ * # Fomantic-UI 2.8.8 - Segment
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -52,6 +52,8 @@
52
52
 
53
53
 
54
54
  /* Header */
55
+ .ui.inverted.segments .segment > .ui.header .sub.header,
56
+ .ui.inverted.segments .segment > .ui.header,
55
57
  .ui.inverted.segment > .ui.header .sub.header,
56
58
  .ui.inverted.segment > .ui.header {
57
59
  color: #FFFFFF;
@@ -138,6 +140,14 @@
138
140
  -webkit-box-shadow: 0 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
139
141
  box-shadow: 0 2px 25px 0 rgba(34, 36, 38, 0.05) inset;
140
142
  }
143
+ .ui.placeholder.segment.tab {
144
+ display: none;
145
+ }
146
+ .ui.placeholder.segment.tab.active {
147
+ display: -webkit-box;
148
+ display: -ms-flexbox;
149
+ display: flex;
150
+ }
141
151
  .ui.placeholder.segment .button,
142
152
  .ui.placeholder.segment textarea {
143
153
  display: block;
@@ -472,6 +482,17 @@
472
482
  .ui.horizontal.segments:not(.stackable) > .segment:first-child {
473
483
  border-left: none;
474
484
  }
485
+ .ui.horizontal.segments > .segment:first-child {
486
+ border-radius: 0.28571429rem 0 0 0.28571429rem;
487
+ }
488
+ .ui.horizontal.segments > .segment:last-child {
489
+ border-radius: 0 0.28571429rem 0.28571429rem 0;
490
+ }
491
+
492
+ /* Equal Width */
493
+ .ui[class*="equal width"].horizontal.segments > .segment {
494
+ width: 100%;
495
+ }
475
496
 
476
497
 
477
498
  /*******************************
@@ -483,23 +504,34 @@
483
504
  Disabled
484
505
  ---------------*/
485
506
 
507
+ .ui.disabled.segments,
486
508
  .ui.disabled.segment {
487
509
  opacity: 0.45;
488
510
  color: rgba(40, 40, 40, 0.3);
511
+ pointer-events: none;
512
+ -webkit-user-select: none;
513
+ -moz-user-select: none;
514
+ -ms-user-select: none;
515
+ user-select: none;
489
516
  }
490
517
 
491
518
  /*--------------
492
519
  Loading
493
520
  ---------------*/
494
521
 
522
+ .ui.loading.segments,
495
523
  .ui.loading.segment {
496
524
  position: relative;
497
525
  cursor: default;
498
526
  pointer-events: none;
499
- text-shadow: none !important;
527
+ -webkit-user-select: none;
528
+ -moz-user-select: none;
529
+ -ms-user-select: none;
530
+ user-select: none;
500
531
  -webkit-transition: all 0s linear;
501
532
  transition: all 0s linear;
502
533
  }
534
+ .ui.loading.segments:before,
503
535
  .ui.loading.segment:before {
504
536
  position: absolute;
505
537
  content: '';
@@ -511,6 +543,7 @@
511
543
  border-radius: 0.28571429rem;
512
544
  z-index: 100;
513
545
  }
546
+ .ui.loading.segments:after,
514
547
  .ui.loading.segment:after {
515
548
  position: absolute;
516
549
  content: '';
@@ -687,11 +720,14 @@
687
720
  Inverted
688
721
  --------------------*/
689
722
 
723
+ .ui.inverted.segments,
724
+ .ui.inverted.segments .segment,
690
725
  .ui.inverted.segment {
691
726
  border: none;
692
727
  -webkit-box-shadow: none;
693
728
  box-shadow: none;
694
729
  }
730
+ .ui.inverted.segments .segment,
695
731
  .ui.inverted.segment,
696
732
  .ui.primary.inverted.segment {
697
733
  background: #1B1C1D;
@@ -712,9 +748,11 @@
712
748
  }
713
749
 
714
750
  /* Loading */
751
+ .ui.inverted.loading.segments,
715
752
  .ui.inverted.loading.segment {
716
753
  color: #FFFFFF;
717
754
  }
755
+ .ui.inverted.loading.segments:before,
718
756
  .ui.inverted.loading.segment:before {
719
757
  background: rgba(0, 0, 0, 0.85);
720
758
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Step
2
+ * # Fomantic-UI 2.8.8 - Step
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -158,13 +158,13 @@
158
158
  }
159
159
 
160
160
  /* Icon */
161
- .ui.steps .step > .icon {
161
+ .ui.steps .step > i.icon {
162
162
  line-height: 1;
163
163
  font-size: 2.5em;
164
164
  margin: 0 1rem 0 0;
165
165
  }
166
- .ui.steps .step > .icon,
167
- .ui.steps .step > .icon ~ .content {
166
+ .ui.steps .step > i.icon,
167
+ .ui.steps .step > i.icon ~ .content {
168
168
  display: block;
169
169
  -webkit-box-flex: 0;
170
170
  -ms-flex: 0 1 auto;
@@ -174,7 +174,7 @@
174
174
  }
175
175
 
176
176
  /* Horizontal Icon */
177
- .ui.steps:not(.vertical) .step > .icon {
177
+ .ui.steps:not(.vertical) .step > i.icon {
178
178
  width: auto;
179
179
  }
180
180
 
@@ -330,7 +330,7 @@
330
330
  }
331
331
 
332
332
  /* Icon */
333
- .ui.steps:not(.unstackable) .step > .icon,
333
+ .ui.steps:not(.unstackable) .step > i.icon,
334
334
  .ui.ordered.steps:not(.unstackable) .step:before {
335
335
  margin: 0 0 1rem 0;
336
336
  }
@@ -372,7 +372,7 @@
372
372
  color: #4183C4;
373
373
  }
374
374
  .ui.ordered.steps .step.active:before,
375
- .ui.steps .active.step .icon {
375
+ .ui.steps .active.step i.icon {
376
376
  color: rgba(0, 0, 0, 0.85);
377
377
  }
378
378
 
@@ -401,7 +401,7 @@
401
401
  }
402
402
 
403
403
  /* Completed */
404
- .ui.steps .step.completed > .icon:before,
404
+ .ui.steps .step.completed > i.icon:before,
405
405
  .ui.ordered.steps .step.completed:before {
406
406
  color: #21BA45;
407
407
  }
@@ -480,7 +480,7 @@
480
480
  }
481
481
 
482
482
  /* Icon */
483
- .ui[class*="tablet stackable"].steps .step > .icon,
483
+ .ui[class*="tablet stackable"].steps .step > i.icon,
484
484
  .ui[class*="tablet stackable"].ordered.steps .step:before {
485
485
  margin: 0 0 1rem 0;
486
486
  }
@@ -643,7 +643,7 @@
643
643
  background: #333333;
644
644
  }
645
645
  .ui.inverted.ordered.steps .step.active:before,
646
- .ui.inverted.steps .active.step .icon {
646
+ .ui.inverted.steps .active.step i.icon {
647
647
  color: #ffffff;
648
648
  }
649
649
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Text
2
+ * # Fomantic-UI 2.8.8 - Text
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -106,6 +106,18 @@ span.ui.black.text {
106
106
  span.ui.inverted.black.text {
107
107
  color: #545454;
108
108
  }
109
+ span.ui.error.text {
110
+ color: #DB2828;
111
+ }
112
+ span.ui.info.text {
113
+ color: #31CCEC;
114
+ }
115
+ span.ui.success.text {
116
+ color: #21BA45;
117
+ }
118
+ span.ui.warning.text {
119
+ color: #F2C037;
120
+ }
109
121
  span.ui.disabled.text {
110
122
  opacity: 0.45;
111
123
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Reset
2
+ * # Fomantic-UI 2.8.8 - Reset
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -126,8 +126,7 @@ abbr[title] {
126
126
  text-decoration: underline;
127
127
 
128
128
  /* 2 */
129
- -webkit-text-decoration: underline dotted;
130
- text-decoration: underline dotted;
129
+ text-decoration: underline dotted;
131
130
 
132
131
  /* 2 */
133
132
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Site
2
+ * # Fomantic-UI 2.8.8 - Site
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -13,7 +13,7 @@
13
13
  Page
14
14
  *******************************/
15
15
 
16
- @import url('https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin&display=swap');
16
+ @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400%3B0,700%3B1,400%3B1,700&subset=latin&display=swap');
17
17
  html,
18
18
  body {
19
19
  height: 100%;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Accordion
2
+ * # Fomantic-UI 2.8.8 - Accordion
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Calendar
2
+ * # Fomantic-UI 2.8.8 - Calendar
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -72,7 +72,7 @@
72
72
  .ui.calendar .ui.table tr th {
73
73
  border-left: none;
74
74
  }
75
- .ui.calendar .ui.table tr th .icon {
75
+ .ui.calendar .ui.table tr th i.icon {
76
76
  margin: 0;
77
77
  }
78
78
  .ui.calendar .ui.table tr:first-child th {
@@ -104,12 +104,12 @@
104
104
  position: absolute;
105
105
  right: 0;
106
106
  }
107
- .ui.calendar .ui.table tr .disabled {
107
+ .ui.ui.calendar .ui.table tr .disabled {
108
108
  pointer-events: auto;
109
109
  cursor: default;
110
110
  color: rgba(40, 40, 40, 0.3);
111
111
  }
112
- .ui.calendar .ui.table tr .adjacent:not(.disabled) {
112
+ .ui.calendar .ui.table tr .adjacent:not(.disabled):not(.active) {
113
113
  color: rgba(0, 0, 0, 0.6);
114
114
  background: rgba(0, 0, 0, 0.03);
115
115
  }
@@ -127,21 +127,28 @@
127
127
  -webkit-box-shadow: none;
128
128
  box-shadow: none;
129
129
  }
130
- .ui.calendar .ui.table.inverted tr td.range {
130
+ .ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus,
131
+ .ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus {
132
+ -webkit-box-shadow: inset 0 0 0 1px #85B7D9;
133
+ box-shadow: inset 0 0 0 1px #85B7D9;
134
+ }
135
+ .ui.inverted.calendar .ui.table.inverted tr td.range {
131
136
  background: rgba(255, 255, 255, 0.08);
132
137
  color: #ffffff;
133
138
  -webkit-box-shadow: none;
134
139
  box-shadow: none;
135
140
  }
136
- .ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus,
137
- .ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus {
141
+ .ui.inverted.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus,
142
+ .ui.inverted.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus {
138
143
  -webkit-box-shadow: inset 0 0 0 1px #85B7D9;
139
144
  box-shadow: inset 0 0 0 1px #85B7D9;
140
145
  }
141
- .ui.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus,
142
- .ui.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus {
143
- -webkit-box-shadow: inset 0 0 0 1px #85B7D9;
144
- box-shadow: inset 0 0 0 1px #85B7D9;
146
+ .ui.inverted.calendar .ui.inverted.table tr .disabled {
147
+ color: rgba(225, 225, 225, 0.3);
148
+ }
149
+ .ui.inverted.calendar .ui.inverted.table tr .adjacent:not(.disabled):not(.active) {
150
+ color: rgba(255, 255, 255, 0.8);
151
+ background: rgba(255, 255, 255, 0.02);
145
152
  }
146
153
 
147
154
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Checkbox
2
+ * # Fomantic-UI 2.8.8 - Checkbox
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -88,6 +88,15 @@
88
88
  transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
89
89
  transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease;
90
90
  }
91
+ .ui.right.aligned.checkbox label {
92
+ padding-left: 0;
93
+ padding-right: 1.85714em;
94
+ }
95
+ .ui.right.aligned.checkbox label:after,
96
+ .ui.right.aligned.checkbox label:before {
97
+ right: 0;
98
+ left: auto;
99
+ }
91
100
 
92
101
  /*--------------
93
102
  Label
@@ -187,6 +196,10 @@
187
196
  .ui.indeterminate.toggle.checkbox input:not([type=radio]) ~ label:after {
188
197
  left: 1.075rem;
189
198
  }
199
+ .ui.right.aligned.indeterminate.toggle.checkbox input:not([type=radio]) ~ label:after {
200
+ left: auto;
201
+ right: 1.075rem;
202
+ }
190
203
 
191
204
  /*--------------
192
205
  Active Focus
@@ -203,12 +216,13 @@
203
216
  }
204
217
 
205
218
  /*--------------
206
- Read-Only
207
- ---------------*/
219
+ Read-Only
220
+ ---------------*/
208
221
 
209
222
  .ui.read-only.checkbox,
210
223
  .ui.read-only.checkbox label {
211
224
  cursor: default;
225
+ pointer-events: none;
212
226
  }
213
227
 
214
228
  /*--------------
@@ -217,7 +231,7 @@
217
231
 
218
232
  .ui.disabled.checkbox label,
219
233
  .ui.checkbox input[disabled] ~ label {
220
- cursor: default !important;
234
+ cursor: default;
221
235
  opacity: 0.5;
222
236
  color: #000000;
223
237
  pointer-events: none;
@@ -411,6 +425,20 @@
411
425
  .ui.slider.checkbox input:focus:checked ~ label:before {
412
426
  background-color: #000000 !important;
413
427
  }
428
+ .ui.right.aligned.slider.checkbox label {
429
+ padding-left: 0;
430
+ padding-right: 4.5rem;
431
+ }
432
+ .ui.right.aligned.slider.checkbox label:after {
433
+ left: auto;
434
+ right: 2rem;
435
+ -webkit-transition: right 0.3s ease;
436
+ transition: right 0.3s ease;
437
+ }
438
+ .ui.right.aligned.slider.checkbox input:checked ~ label:after {
439
+ left: auto;
440
+ right: 0;
441
+ }
414
442
 
415
443
  /*--------------
416
444
  Toggle
@@ -512,6 +540,20 @@
512
540
  .ui.toggle.checkbox input:focus:checked ~ label:before {
513
541
  background-color: #0d71bb !important;
514
542
  }
543
+ .ui.right.aligned.toggle.checkbox label {
544
+ padding-left: 0;
545
+ padding-right: 4.5rem;
546
+ }
547
+ .ui.right.aligned.toggle.checkbox input ~ label:after {
548
+ left: auto;
549
+ right: 2.15rem;
550
+ -webkit-transition: background 0.3s ease, right 0.3s ease;
551
+ transition: background 0.3s ease, right 0.3s ease;
552
+ }
553
+ .ui.right.aligned.toggle.checkbox input:checked ~ label:after {
554
+ left: auto;
555
+ right: -0.05rem;
556
+ }
515
557
 
516
558
 
517
559
  /*******************************
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Dimmer
2
+ * # Fomantic-UI 2.8.8 - Dimmer
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -26,7 +26,7 @@
26
26
  text-align: center;
27
27
  vertical-align: middle;
28
28
  padding: 1em;
29
- background-color: rgba(0, 0, 0, 0.85);
29
+ background: rgba(0, 0, 0, 0.85);
30
30
  opacity: 0;
31
31
  line-height: 1;
32
32
  -webkit-animation-fill-mode: both;
@@ -185,10 +185,10 @@ body.dimmable > .dimmer {
185
185
 
186
186
  /* Dimmer Color */
187
187
  .blurring.dimmable > .dimmer {
188
- background-color: rgba(0, 0, 0, 0.6);
188
+ background: rgba(0, 0, 0, 0.6);
189
189
  }
190
190
  .blurring.dimmable > .inverted.dimmer {
191
- background-color: rgba(255, 255, 255, 0.6);
191
+ background: rgba(255, 255, 255, 0.6);
192
192
  }
193
193
 
194
194
  /*--------------
@@ -207,13 +207,13 @@ body.dimmable > .dimmer {
207
207
  ---------------*/
208
208
 
209
209
  .medium.medium.medium.medium.medium.dimmer {
210
- background-color: rgba(0, 0, 0, 0.65);
210
+ background: rgba(0, 0, 0, 0.65);
211
211
  }
212
212
  .light.light.light.light.light.dimmer {
213
- background-color: rgba(0, 0, 0, 0.45);
213
+ background: rgba(0, 0, 0, 0.45);
214
214
  }
215
215
  .very.light.light.light.light.dimmer {
216
- background-color: rgba(0, 0, 0, 0.25);
216
+ background: rgba(0, 0, 0, 0.25);
217
217
  }
218
218
 
219
219
  /*--------------
@@ -221,7 +221,7 @@ body.dimmable > .dimmer {
221
221
  ---------------*/
222
222
 
223
223
  .ui.inverted.dimmer {
224
- background-color: rgba(255, 255, 255, 0.85);
224
+ background: rgba(255, 255, 255, 0.85);
225
225
  }
226
226
  .ui.inverted.dimmer > .content,
227
227
  .ui.inverted.dimmer > .content > * {
@@ -233,13 +233,13 @@ body.dimmable > .dimmer {
233
233
  ---------------*/
234
234
 
235
235
  .medium.medium.medium.medium.medium.inverted.dimmer {
236
- background-color: rgba(255, 255, 255, 0.65);
236
+ background: rgba(255, 255, 255, 0.65);
237
237
  }
238
238
  .light.light.light.light.light.inverted.dimmer {
239
- background-color: rgba(255, 255, 255, 0.45);
239
+ background: rgba(255, 255, 255, 0.45);
240
240
  }
241
241
  .very.light.light.light.light.inverted.dimmer {
242
- background-color: rgba(255, 255, 255, 0.25);
242
+ background: rgba(255, 255, 255, 0.25);
243
243
  }
244
244
 
245
245
  /*--------------
@@ -255,21 +255,21 @@ body.dimmable > .dimmer {
255
255
  width: 0;
256
256
  height: 0;
257
257
  z-index: -100;
258
- background-color: rgba(0, 0, 0, 0);
258
+ background: rgba(0, 0, 0, 0);
259
259
  }
260
260
  .dimmed.dimmable > .ui.simple.dimmer {
261
261
  overflow: visible;
262
262
  opacity: 1;
263
263
  width: 100%;
264
264
  height: 100%;
265
- background-color: rgba(0, 0, 0, 0.85);
265
+ background: rgba(0, 0, 0, 0.85);
266
266
  z-index: 1;
267
267
  }
268
268
  .ui.simple.inverted.dimmer {
269
- background-color: rgba(255, 255, 255, 0);
269
+ background: rgba(255, 255, 255, 0);
270
270
  }
271
271
  .dimmed.dimmable > .ui.simple.inverted.dimmer {
272
- background-color: rgba(255, 255, 255, 0.85);
272
+ background: rgba(255, 255, 255, 0.85);
273
273
  }
274
274
 
275
275
  /*--------------