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 - Toast
2
+ * # Fomantic-UI 2.8.8 - Toast
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -17,6 +17,52 @@
17
17
  position: fixed;
18
18
  z-index: 9999;
19
19
  }
20
+ .ui.toast-container.ui.attached {
21
+ width: 100%;
22
+ left: 0;
23
+ }
24
+ .ui.toast-container.ui.attached .vertical.attached {
25
+ border-radius: 0;
26
+ }
27
+ .ui.toast-container.ui.attached.ui.ui .attached.actions .button {
28
+ border-radius: 0;
29
+ }
30
+ .ui.toast-container.ui.attached .toast-box {
31
+ margin: 0;
32
+ width: 100%;
33
+ border-radius: 0;
34
+ }
35
+ .ui.toast-container.ui.attached .toast-box > .ui.toast,
36
+ .ui.toast-container.ui.attached .toast-box > .ui.message {
37
+ margin-left: 0;
38
+ }
39
+ .ui.toast-container.ui.attached .toast-box.floating,
40
+ .ui.toast-container.ui.attached .toast-box.hoverfloating:hover {
41
+ border: none;
42
+ }
43
+ .ui.toast-container.ui.attached .toast-box > .vertical > .content {
44
+ -webkit-box-flex: 1;
45
+ -ms-flex: 1;
46
+ flex: 1;
47
+ }
48
+ .ui.toast-container.ui.attached .toast-box > * {
49
+ width: 100%;
50
+ border-radius: 0;
51
+ }
52
+ .ui.toast-container.ui.attached .toast-box > * > .vertical:not(.actions) {
53
+ -webkit-box-flex: 1;
54
+ -ms-flex: 1;
55
+ flex: 1;
56
+ }
57
+ .ui.toast-container.ui.attached .toast-box > .attached.actions {
58
+ margin-right: 1px;
59
+ }
60
+ .ui.toast-container.ui.attached.top {
61
+ top: 0;
62
+ }
63
+ .ui.toast-container.ui.attached.bottom {
64
+ bottom: 0;
65
+ }
20
66
  .ui.toast-container.top.right {
21
67
  top: 0.85714286em;
22
68
  right: 0.85714286em;
@@ -54,6 +100,18 @@
54
100
  .ui.toast-container .toast-box {
55
101
  display: table !important;
56
102
  }
103
+ .ui.toast-container.horizontal {
104
+ display: -webkit-box;
105
+ display: -ms-flexbox;
106
+ display: flex;
107
+ -webkit-box-orient: horizontal;
108
+ -webkit-box-direction: normal;
109
+ -ms-flex-direction: row;
110
+ flex-direction: row;
111
+ }
112
+ .ui.toast-container.horizontal .toast-box {
113
+ margin-right: 0.5em;
114
+ }
57
115
  .ui.toast-container .toast-box {
58
116
  margin-bottom: 0.5em;
59
117
  border-radius: 0.28571429rem;
@@ -101,7 +159,7 @@
101
159
  .ui.toast-container .toast-box > .attached.progress.success .bar.bar.bar {
102
160
  background: #15792d;
103
161
  }
104
- .ui.toast-container .toast-box > .attached.progress .error .bar.bar.bar {
162
+ .ui.toast-container .toast-box > .attached.progress.error .bar.bar.bar {
105
163
  background: #9c1a1a;
106
164
  }
107
165
  .ui.toast-container .toast-box > .attached.progress.neutral .bar.bar.bar {
@@ -122,7 +180,7 @@
122
180
  .ui.toast-container .toast-box > .ui.message.icon > :not(.icon):not(.actions) {
123
181
  padding-left: 5rem;
124
182
  }
125
- .ui.toast-container .toast-box > .ui.message.icon > .icon:not(.close) {
183
+ .ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
126
184
  display: inline-block;
127
185
  position: absolute;
128
186
  width: 4rem;
@@ -130,7 +188,7 @@
130
188
  -webkit-transform: translateY(-50%);
131
189
  transform: translateY(-50%);
132
190
  }
133
- .ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > .icon:not(.close) {
191
+ .ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > i.icon:not(.close) {
134
192
  top: calc(50% - 1.2em);
135
193
  -webkit-transform: none;
136
194
  transform: none;
@@ -326,9 +384,6 @@
326
384
  border-top-right-radius: 0;
327
385
  border-bottom-right-radius: 0;
328
386
  }
329
- .ui.vertical.attached.left.actions .button:not(:first-child):not(:last-child) {
330
- margin-left: -1px;
331
- }
332
387
  .ui.vertical.attached.left.message.message.message {
333
388
  border-top-right-radius: 0.28571429rem;
334
389
  border-bottom-right-radius: 0.28571429rem;
@@ -392,21 +447,21 @@
392
447
  background-color: #FFFFFF;
393
448
  color: rgba(0, 0, 0, 0.87);
394
449
  }
395
- .ui.toast > .icon:not(.close) {
450
+ .ui.toast > i.icon:not(.close) {
396
451
  font-size: 1.5em;
397
452
  }
398
- .ui.toast:not(.vertical) > .icon:not(.close) {
453
+ .ui.toast:not(.vertical):not(.centered):not(.center) > i.icon:not(.close) {
399
454
  position: absolute;
400
455
  }
401
- .ui.toast:not(.vertical) > .icon:not(.close) + .content {
456
+ .ui.toast:not(.vertical):not(.centered):not(.center) > .ui.image {
457
+ position: absolute;
458
+ }
459
+ .ui.toast:not(.vertical) > i.icon:not(.close) + .content {
402
460
  padding-left: 3em;
403
461
  }
404
462
  .ui.toast:not(.vertical) > .close.icon + .content {
405
463
  padding-left: 1.5em;
406
464
  }
407
- .ui.toast:not(.vertical) > .ui.image {
408
- position: absolute;
409
- }
410
465
  .ui.toast:not(.vertical) > .ui.image.avatar + .content {
411
466
  padding-left: 3em;
412
467
  min-height: 2em;
@@ -423,8 +478,8 @@
423
478
  padding-left: 12em;
424
479
  min-height: 150px;
425
480
  }
426
- .ui.toast:not(.vertical) > .centered.image,
427
- .ui.toast:not(.vertical) > .centered.icon {
481
+ .ui.toast:not(.vertical):not(.centered):not(.center) > .centered.image,
482
+ .ui.toast:not(.vertical):not(.centered):not(.center) > .centered.icon {
428
483
  -webkit-transform: translateY(-50%);
429
484
  transform: translateY(-50%);
430
485
  top: 50%;
@@ -439,7 +494,7 @@
439
494
  padding-left: 1em;
440
495
  }
441
496
  .ui.toast.vertical > .ui.image + .content,
442
- .ui.toast.vertical > .icon:not(.close) + .content {
497
+ .ui.toast.vertical > i.icon:not(.close) + .content {
443
498
  padding-left: 1em;
444
499
  }
445
500
  .ui.toast.vertical > .ui.image {
@@ -474,6 +529,38 @@
474
529
  .ui.center.toast-container .toast-box {
475
530
  margin-right: auto;
476
531
  }
532
+ .ui.ui.toast-container .toast-box .centered.toast,
533
+ .ui.ui.toast-container .toast-box .center.aligned.toast {
534
+ text-align: center;
535
+ display: -webkit-box;
536
+ display: -ms-flexbox;
537
+ display: flex;
538
+ -webkit-box-pack: center;
539
+ -ms-flex-pack: center;
540
+ justify-content: center;
541
+ }
542
+ .ui.ui.toast-container .toast-box .centered.toast > .content,
543
+ .ui.ui.toast-container .toast-box .center.aligned.toast > .content,
544
+ .ui.ui.toast-container .toast-box .centered.toast > .ui.image,
545
+ .ui.ui.toast-container .toast-box .center.aligned.toast > .ui.image,
546
+ .ui.ui.toast-container .toast-box .centered.toast > i.icon:not(.close),
547
+ .ui.ui.toast-container .toast-box .center.aligned.toast > i.icon:not(.close) {
548
+ -ms-flex-item-align: center;
549
+ align-self: center;
550
+ }
551
+ .ui.toast-container .toast-box .toast .centered.content,
552
+ .ui.toast-container .toast-box .toast .center.aligned.content {
553
+ text-align: center;
554
+ }
555
+ .ui.toast-container .toast-box .centered.actions,
556
+ .ui.toast-container .toast-box .center.aligned.actions {
557
+ text-align: center;
558
+ }
559
+ .ui.toast-container .toast-box .centered.actions:not(.attached) > .button:not(.fluid),
560
+ .ui.toast-container .toast-box .center.aligned.actions:not(.attached) > .button:not(.fluid) {
561
+ margin-left: 0.25em;
562
+ margin-right: 0.25em;
563
+ }
477
564
 
478
565
  /*--------------
479
566
  Colors
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Transition
2
+ * # Fomantic-UI 2.8.8 - Transition
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Ad
2
+ * # Fomantic-UI 2.8.8 - Ad
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Card
2
+ * # Fomantic-UI 2.8.8 - Card
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -345,7 +345,7 @@
345
345
 
346
346
  .ui.cards > .card .dimmer,
347
347
  .ui.card .dimmer {
348
- background-color: '';
348
+ background: '';
349
349
  z-index: 10;
350
350
  }
351
351
 
@@ -431,6 +431,62 @@
431
431
  }
432
432
 
433
433
 
434
+ /*******************************
435
+ States
436
+ *******************************/
437
+
438
+
439
+ /*--------------
440
+ Disabled
441
+ ---------------*/
442
+
443
+ .ui.disabled.card {
444
+ opacity: 0.45;
445
+ color: rgba(40, 40, 40, 0.3);
446
+ pointer-events: none;
447
+ }
448
+
449
+ /*--------------
450
+ Loading
451
+ ---------------*/
452
+
453
+ .ui.loading.card {
454
+ position: relative;
455
+ cursor: default;
456
+ pointer-events: none;
457
+ -webkit-transition: all 0s linear;
458
+ transition: all 0s linear;
459
+ }
460
+ .ui.loading.card:before {
461
+ position: absolute;
462
+ content: '';
463
+ top: 0;
464
+ left: 0;
465
+ background: rgba(255, 255, 255, 0.8);
466
+ width: 100%;
467
+ height: 100%;
468
+ border-radius: 0.28571429rem;
469
+ z-index: 100;
470
+ }
471
+ .ui.loading.card:after {
472
+ position: absolute;
473
+ content: '';
474
+ top: 50%;
475
+ left: 50%;
476
+ margin: -1.5em 0 0 -1.5em;
477
+ width: 3em;
478
+ height: 3em;
479
+ -webkit-animation: loader 0.6s infinite linear;
480
+ animation: loader 0.6s infinite linear;
481
+ border: 0.2em solid #767676;
482
+ border-radius: 500rem;
483
+ -webkit-box-shadow: 0 0 0 1px transparent;
484
+ box-shadow: 0 0 0 1px transparent;
485
+ visibility: visible;
486
+ z-index: 101;
487
+ }
488
+
489
+
434
490
  /*******************************
435
491
  Variations
436
492
  *******************************/
@@ -472,7 +528,6 @@
472
528
  display: -ms-flexbox;
473
529
  display: flex;
474
530
  width: 100%;
475
- height: 100%;
476
531
  border-radius: 0.28571429rem 0 0 0.28571429rem;
477
532
  }
478
533
  .ui.horizontal.cards > .card > .image:last-child > img,
@@ -481,6 +536,7 @@
481
536
  }
482
537
  .ui.horizontal.cards > .card > .content,
483
538
  .ui.horizontal.card > .content {
539
+ border-top: none;
484
540
  -ms-flex-preferred-size: 1px;
485
541
  flex-basis: 1px;
486
542
  }
@@ -1261,6 +1317,14 @@ a.ui.card:hover,
1261
1317
  .ui.inverted.card > .content > .header {
1262
1318
  color: rgba(255, 255, 255, 0.9);
1263
1319
  }
1320
+ .ui.inverted.cards > .card > .content > a.header,
1321
+ .ui.inverted.card > .content > a.header {
1322
+ color: rgba(255, 255, 255, 0.9);
1323
+ }
1324
+ .ui.inverted.cards > .card > .content > a.header:hover,
1325
+ .ui.inverted.card > .content > a.header:hover {
1326
+ color: #1e70bf;
1327
+ }
1264
1328
 
1265
1329
  /* Description */
1266
1330
  .ui.inverted.cards > .card > .content > .description,
@@ -1305,6 +1369,14 @@ a.inverted.ui.card:hover,
1305
1369
  background: #1B1C1D;
1306
1370
  }
1307
1371
 
1372
+ /* Loading */
1373
+ .ui.inverted.loading.card {
1374
+ color: #FFFFFF;
1375
+ }
1376
+ .ui.inverted.loading.card:before {
1377
+ background: rgba(0, 0, 0, 0.85);
1378
+ }
1379
+
1308
1380
 
1309
1381
  /*******************************
1310
1382
  Theme Overrides
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Comment
2
+ * # Fomantic-UI 2.8.8 - Comment
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Feed
2
+ * # Fomantic-UI 2.8.8 - Feed
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -237,10 +237,10 @@
237
237
  -webkit-transition: 0.2s color ease;
238
238
  transition: 0.2s color ease;
239
239
  }
240
- .ui.feed > .event > .content .meta .like:hover .icon {
240
+ .ui.feed > .event > .content .meta .like:hover i.icon {
241
241
  color: #FF2733;
242
242
  }
243
- .ui.feed > .event > .content .meta .active.like .icon {
243
+ .ui.feed > .event > .content .meta .active.like i.icon {
244
244
  color: #EF404A;
245
245
  }
246
246
 
@@ -254,7 +254,7 @@
254
254
 
255
255
  /* Action */
256
256
  .ui.feed > .event > .content .meta a,
257
- .ui.feed > .event > .content .meta > .icon {
257
+ .ui.feed > .event > .content .meta > i.icon {
258
258
  cursor: pointer;
259
259
  opacity: 1;
260
260
  color: rgba(0, 0, 0, 0.5);
@@ -262,8 +262,8 @@
262
262
  transition: color 0.1s ease;
263
263
  }
264
264
  .ui.feed > .event > .content .meta a:hover,
265
- .ui.feed > .event > .content .meta a:hover .icon,
266
- .ui.feed > .event > .content .meta > .icon:hover {
265
+ .ui.feed > .event > .content .meta a:hover i.icon,
266
+ .ui.feed > .event > .content .meta > i.icon:hover {
267
267
  color: rgba(0, 0, 0, 0.95);
268
268
  }
269
269
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Item
2
+ * # Fomantic-UI 2.8.8 - Item
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Statistic
2
+ * # Fomantic-UI 2.8.8 - Statistic
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -144,8 +144,8 @@
144
144
  Icon Value
145
145
  ---------------*/
146
146
 
147
- .ui.statistics .statistic > .value .icon,
148
- .ui.statistic > .value .icon {
147
+ .ui.statistics .statistic > .value > i.icon,
148
+ .ui.statistic > .value > i.icon {
149
149
  opacity: 1;
150
150
  width: auto;
151
151
  margin: 0;
@@ -294,8 +294,8 @@
294
294
  .ui.horizontal.statistics > .statistic > .text.value {
295
295
  min-height: 0 !important;
296
296
  }
297
- .ui.horizontal.statistics .statistic > .value .icon,
298
- .ui.horizontal.statistic > .value .icon {
297
+ .ui.horizontal.statistics .statistic > .value > i.icon,
298
+ .ui.horizontal.statistic > .value > i.icon {
299
299
  width: 1.18em;
300
300
  }
301
301
  .ui.horizontal.statistics .statistic > .value,
@@ -1,8 +1,8 @@
1
1
  module Fomantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = '2.8.6'.freeze
5
- SEMANTIC_UI_SHA = '2b06f8b0aeb6c552c5252c39cddce259216f40ed'.freeze
4
+ VERSION = '2.8.8'.freeze
5
+ SEMANTIC_UI_SHA = 'bd27381b4164aec236a3c69001504fd97205f012'.freeze
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fomantic-ui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.6
4
+ version: 2.8.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - doabit
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-07-07 00:00:00.000000000 Z
12
+ date: 2022-03-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: autoprefixer-rails
@@ -364,7 +364,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
364
364
  - !ruby/object:Gem::Version
365
365
  version: '0'
366
366
  requirements: []
367
- rubygems_version: 3.1.2
367
+ rubygems_version: 3.1.6
368
368
  signing_key:
369
369
  specification_version: 4
370
370
  summary: Fomantic UI, converted to Sass and ready to drop into Rails, Compass, or