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 - Dropdown
2
+ * # Fomantic-UI 2.8.8 - Dropdown
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -84,6 +84,7 @@
84
84
  .ui.dropdown:not(.labeled) > .dropdown.icon {
85
85
  position: relative;
86
86
  width: auto;
87
+ min-width: 1em;
87
88
  font-size: 0.85714286em;
88
89
  margin: 0 0 0 1em;
89
90
  }
@@ -132,6 +133,15 @@
132
133
  .ui.dropdown .menu > .item:first-child {
133
134
  border-top-width: 0;
134
135
  }
136
+ .ui.dropdown .menu > .item.vertical {
137
+ display: -webkit-box;
138
+ display: -ms-flexbox;
139
+ display: flex;
140
+ -webkit-box-orient: vertical;
141
+ -webkit-box-direction: reverse;
142
+ -ms-flex-direction: column-reverse;
143
+ flex-direction: column-reverse;
144
+ }
135
145
 
136
146
  /*--------------
137
147
  Floated Content
@@ -149,7 +159,7 @@
149
159
  margin-left: 0 !important;
150
160
  margin-right: 1em !important;
151
161
  }
152
- .ui.dropdown .menu .item > .icon.floated,
162
+ .ui.dropdown .menu .item > i.icon.floated,
153
163
  .ui.dropdown .menu .item > .flag.floated,
154
164
  .ui.dropdown .menu .item > .image.floated,
155
165
  .ui.dropdown .menu .item > img.floated {
@@ -193,7 +203,7 @@
193
203
  padding: 0.5em 1em;
194
204
  }
195
205
  .ui.dropdown .menu > .input:not(.transparent) .button,
196
- .ui.dropdown .menu > .input:not(.transparent) .icon,
206
+ .ui.dropdown .menu > .input:not(.transparent) i.icon,
197
207
  .ui.dropdown .menu > .input:not(.transparent) .label {
198
208
  padding-top: 0.5em;
199
209
  padding-bottom: 0.5em;
@@ -209,6 +219,17 @@
209
219
  margin: 0 0 0 1em;
210
220
  color: rgba(0, 0, 0, 0.4);
211
221
  }
222
+ .ui.dropdown .menu > .item.vertical > .description {
223
+ margin: 0;
224
+ }
225
+
226
+ /*-----------------
227
+ Item Text
228
+ -------------------*/
229
+
230
+ .ui.dropdown .menu > .item.vertical > .text {
231
+ margin-bottom: 0.25em;
232
+ }
212
233
 
213
234
  /*-----------------
214
235
  Message
@@ -246,26 +267,30 @@
246
267
 
247
268
 
248
269
  /* Icons / Flags / Labels / Image */
249
- .ui.dropdown > .text > .icon,
270
+ .ui.dropdown > .text > i.icons,
271
+ .ui.dropdown > .text > i.icon,
250
272
  .ui.dropdown > .text > .label,
251
273
  .ui.dropdown > .text > .flag,
252
274
  .ui.dropdown > .text > img,
253
275
  .ui.dropdown > .text > .image {
254
276
  margin-top: 0em;
255
277
  }
256
- .ui.dropdown .menu > .item > .icon,
278
+ .ui.dropdown .menu > .item > i.icons,
279
+ .ui.dropdown .menu > .item > i.icon,
257
280
  .ui.dropdown .menu > .item > .label,
258
281
  .ui.dropdown .menu > .item > .flag,
259
282
  .ui.dropdown .menu > .item > .image,
260
283
  .ui.dropdown .menu > .item > img {
261
284
  margin-top: 0em;
262
285
  }
263
- .ui.dropdown > .text > .icon,
286
+ .ui.dropdown > .text > i.icons,
287
+ .ui.dropdown > .text > i.icon,
264
288
  .ui.dropdown > .text > .label,
265
289
  .ui.dropdown > .text > .flag,
266
290
  .ui.dropdown > .text > img,
267
291
  .ui.dropdown > .text > .image,
268
- .ui.dropdown .menu > .item > .icon,
292
+ .ui.dropdown .menu > .item > i.icons,
293
+ .ui.dropdown .menu > .item > i.icon,
269
294
  .ui.dropdown .menu > .item > .label,
270
295
  .ui.dropdown .menu > .item > .flag,
271
296
  .ui.dropdown .menu > .item > .image,
@@ -444,12 +469,12 @@ select.ui.dropdown {
444
469
  padding: 0.78571429rem 1.14285714rem;
445
470
  }
446
471
  @media only screen and (max-width: 767.98px) {
447
- .ui.selection.dropdown[class*="very short"] .menu {
448
- max-height: 4.00714286rem;
449
- }
450
472
  .ui.selection.dropdown.short .menu {
451
473
  max-height: 6.01071429rem;
452
474
  }
475
+ .ui.selection.dropdown[class*="very short"] .menu {
476
+ max-height: 4.00714286rem;
477
+ }
453
478
  .ui.selection.dropdown .menu {
454
479
  max-height: 8.01428571rem;
455
480
  }
@@ -461,12 +486,12 @@ select.ui.dropdown {
461
486
  }
462
487
  }
463
488
  @media only screen and (min-width: 768px) {
464
- .ui.selection.dropdown[class*="very short"] .menu {
465
- max-height: 5.34285714rem;
466
- }
467
489
  .ui.selection.dropdown.short .menu {
468
490
  max-height: 8.01428571rem;
469
491
  }
492
+ .ui.selection.dropdown[class*="very short"] .menu {
493
+ max-height: 5.34285714rem;
494
+ }
470
495
  .ui.selection.dropdown .menu {
471
496
  max-height: 10.68571429rem;
472
497
  }
@@ -478,12 +503,12 @@ select.ui.dropdown {
478
503
  }
479
504
  }
480
505
  @media only screen and (min-width: 992px) {
481
- .ui.selection.dropdown[class*="very short"] .menu {
482
- max-height: 8.01428571rem;
483
- }
484
506
  .ui.selection.dropdown.short .menu {
485
507
  max-height: 12.02142857rem;
486
508
  }
509
+ .ui.selection.dropdown[class*="very short"] .menu {
510
+ max-height: 8.01428571rem;
511
+ }
487
512
  .ui.selection.dropdown .menu {
488
513
  max-height: 16.02857143rem;
489
514
  }
@@ -495,12 +520,12 @@ select.ui.dropdown {
495
520
  }
496
521
  }
497
522
  @media only screen and (min-width: 1920px) {
498
- .ui.selection.dropdown[class*="very short"] .menu {
499
- max-height: 10.68571429rem;
500
- }
501
523
  .ui.selection.dropdown.short .menu {
502
524
  max-height: 16.02857143rem;
503
525
  }
526
+ .ui.selection.dropdown[class*="very short"] .menu {
527
+ max-height: 10.68571429rem;
528
+ }
504
529
  .ui.selection.dropdown .menu {
505
530
  max-height: 21.37142857rem;
506
531
  }
@@ -599,6 +624,58 @@ select.ui.dropdown {
599
624
  box-shadow: none !important;
600
625
  }
601
626
 
627
+ /* CSS specific to iOS devices or firefox mobile only */
628
+ @supports (-webkit-touch-callout: none) or (-webkit-overflow-scrolling: touch) or (-moz-appearance:none) {
629
+ @media (-moz-touch-enabled), (pointer: coarse) {
630
+ .ui.dropdown .scrollhint.menu:not(.hidden):before {
631
+ -webkit-animation: scrollhint 2s ease 2;
632
+ animation: scrollhint 2s ease 2;
633
+ content: '';
634
+ z-index: 15;
635
+ display: block;
636
+ position: absolute;
637
+ opacity: 0;
638
+ right: 0.25em;
639
+ top: 0;
640
+ height: 100%;
641
+ border-right: 0.25em solid;
642
+ border-left: 0;
643
+ -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0))) 1 100%;
644
+ -webkit-border-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) 1 100%;
645
+ -o-border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) 1 100%;
646
+ border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0))) 1 100%;
647
+ border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) 1 100%;
648
+ }
649
+ .ui.inverted.dropdown .scrollhint.menu:not(.hidden):before {
650
+ -webkit-border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.75)), to(rgba(255, 255, 255, 0))) 1 100%;
651
+ -webkit-border-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) 1 100%;
652
+ -o-border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) 1 100%;
653
+ border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.75)), to(rgba(255, 255, 255, 0))) 1 100%;
654
+ border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) 1 100%;
655
+ }
656
+ @-webkit-keyframes scrollhint {
657
+ 0% {
658
+ opacity: 1;
659
+ top: 100%;
660
+ }
661
+ 100% {
662
+ opacity: 0;
663
+ top: 0;
664
+ }
665
+ }
666
+ @keyframes scrollhint {
667
+ 0% {
668
+ opacity: 1;
669
+ top: 100%;
670
+ }
671
+ 100% {
672
+ opacity: 0;
673
+ top: 0;
674
+ }
675
+ }
676
+ }
677
+ }
678
+
602
679
  /*--------------
603
680
  Searchable
604
681
  ---------------*/
@@ -661,13 +738,16 @@ select.ui.dropdown {
661
738
  }
662
739
 
663
740
  /* Filtered Text */
664
- .ui.active.search.dropdown input.search:focus + .text .icon,
741
+ .ui.active.search.dropdown input.search:focus + .text i.icon,
665
742
  .ui.active.search.dropdown input.search:focus + .text .flag {
666
743
  opacity: 0.45;
667
744
  }
668
745
  .ui.active.search.dropdown input.search:focus + .text {
669
746
  color: rgba(115, 115, 115, 0.87) !important;
670
747
  }
748
+ .ui.search.dropdown.button > span.sizer {
749
+ display: none;
750
+ }
671
751
 
672
752
  /* Search Menu */
673
753
  .ui.search.dropdown .menu {
@@ -704,12 +784,18 @@ select.ui.dropdown {
704
784
  font-size: 0.85714286em;
705
785
  margin: -0.78571429em;
706
786
  padding: 0.91666667em;
707
- right: 3em;
787
+ right: 2em;
708
788
  top: 0.78571429em;
709
789
  position: absolute;
710
790
  opacity: 0.6;
711
791
  z-index: 3;
712
792
  }
793
+ .ui.selection.dropdown > .remove.icon {
794
+ right: 3em;
795
+ }
796
+ .ui.inline.dropdown > .remove.icon {
797
+ right: 2.2em;
798
+ }
713
799
  .ui.clearable.dropdown .text,
714
800
  .ui.clearable.dropdown a:last-of-type {
715
801
  margin-right: 1.5em;
@@ -720,6 +806,12 @@ select.ui.dropdown {
720
806
  .ui.dropdown.loading > .remove.icon {
721
807
  display: none;
722
808
  }
809
+ .ui.dropdown:not(.selection) > .remove.icon ~ .dropdown.icon {
810
+ margin-left: 1.5em;
811
+ }
812
+ .ui.dropdown:not(.selection) > .remove.icon {
813
+ margin-top: -1.35em;
814
+ }
723
815
 
724
816
  /*--------------
725
817
  Multiple
@@ -727,7 +819,7 @@ select.ui.dropdown {
727
819
 
728
820
 
729
821
  /* Multiple Selection */
730
- .ui.multiple.dropdown {
822
+ .ui.ui.multiple.dropdown {
731
823
  padding: 0.22619048em 3.2em 0.22619048em 0.35714286em;
732
824
  }
733
825
  .ui.multiple.dropdown .menu {
@@ -759,6 +851,11 @@ select.ui.dropdown {
759
851
  margin: 0.45238095em 0 0.45238095em 0.64285714em;
760
852
  line-height: 1.21428571em;
761
853
  }
854
+ .ui.multiple.dropdown > .text.default {
855
+ white-space: nowrap;
856
+ overflow: hidden;
857
+ text-overflow: ellipsis;
858
+ }
762
859
  .ui.multiple.dropdown > .label ~ input.search {
763
860
  margin-left: 0.14285714em !important;
764
861
  }
@@ -810,6 +907,9 @@ select.ui.dropdown {
810
907
  width: 2.2em;
811
908
  line-height: 1.21428571em;
812
909
  }
910
+ .ui.multiple.search.dropdown.button {
911
+ min-width: 14em;
912
+ }
813
913
 
814
914
  /*--------------
815
915
  Inline
@@ -1103,11 +1203,13 @@ select.ui.dropdown {
1103
1203
  Clear
1104
1204
  ----------------------*/
1105
1205
 
1206
+ .ui.dropdown > .remove.icon,
1106
1207
  .ui.dropdown > .clear.dropdown.icon {
1107
- opacity: 0.8;
1208
+ opacity: 0.6;
1108
1209
  -webkit-transition: opacity 0.1s ease;
1109
1210
  transition: opacity 0.1s ease;
1110
1211
  }
1212
+ .ui.dropdown > .remove.icon:hover,
1111
1213
  .ui.dropdown > .clear.dropdown.icon:hover {
1112
1214
  opacity: 1;
1113
1215
  }
@@ -1125,6 +1227,15 @@ select.ui.dropdown {
1125
1227
  opacity: 0.45;
1126
1228
  }
1127
1229
 
1230
+ /*--------------------
1231
+ Read-Only
1232
+ ----------------------*/
1233
+
1234
+ .ui.read-only.dropdown {
1235
+ cursor: default;
1236
+ pointer-events: none;
1237
+ }
1238
+
1128
1239
 
1129
1240
  /*******************************
1130
1241
  Variations
@@ -1319,24 +1430,47 @@ select.ui.dropdown {
1319
1430
  }
1320
1431
  }
1321
1432
 
1433
+ /*--------------------
1434
+ Labeled
1435
+ ---------------------*/
1436
+
1437
+
1438
+ /* Regular Label on Left */
1439
+ .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + .dropdown {
1440
+ border-top-left-radius: 0;
1441
+ border-bottom-left-radius: 0;
1442
+ border-left-color: transparent;
1443
+ }
1444
+
1445
+ /* Regular Label on Right */
1446
+ .ui[class*="right labeled"].input > .dropdown:not(:last-child) {
1447
+ border-top-right-radius: 0 !important;
1448
+ border-bottom-right-radius: 0 !important;
1449
+ border-right-color: transparent !important;
1450
+ }
1451
+ .ui[class*="right labeled"].input > .dropdown + .label {
1452
+ border-top-left-radius: 0;
1453
+ border-bottom-left-radius: 0;
1454
+ }
1455
+
1322
1456
  /*--------------
1323
1457
  Columnar
1324
1458
  ---------------*/
1325
1459
 
1460
+ .ui.column.dropdown > .menu {
1461
+ -ms-flex-wrap: wrap;
1462
+ flex-wrap: wrap;
1463
+ }
1326
1464
  .ui.dropdown[class*="two column"] > .menu > .item {
1327
- display: inline-block;
1328
1465
  width: 50%;
1329
1466
  }
1330
1467
  .ui.dropdown[class*="three column"] > .menu > .item {
1331
- display: inline-block;
1332
1468
  width: 33%;
1333
1469
  }
1334
1470
  .ui.dropdown[class*="four column"] > .menu > .item {
1335
- display: inline-block;
1336
1471
  width: 25%;
1337
1472
  }
1338
1473
  .ui.dropdown[class*="five column"] > .menu > .item {
1339
- display: inline-block;
1340
1474
  width: 20%;
1341
1475
  }
1342
1476
 
@@ -1694,40 +1828,49 @@ select.ui.dropdown {
1694
1828
 
1695
1829
 
1696
1830
  /* General rules and basic dropdowns */
1831
+ .ui.dropdown .inverted.menu,
1697
1832
  .ui.inverted.dropdown .menu {
1698
1833
  background: #1B1C1D;
1699
1834
  -webkit-box-shadow: none;
1700
1835
  box-shadow: none;
1701
1836
  border: 1px solid rgba(255, 255, 255, 0.15);
1702
1837
  }
1838
+ .ui.dropdown .inverted.menu > .item,
1703
1839
  .ui.inverted.dropdown .menu > .item {
1704
1840
  color: rgba(255, 255, 255, 0.8);
1705
1841
  }
1842
+ .ui.dropdown .inverted.menu .active.item,
1706
1843
  .ui.inverted.dropdown .menu .active.item {
1707
1844
  background: transparent;
1708
1845
  color: rgba(255, 255, 255, 0.8);
1709
1846
  -webkit-box-shadow: none;
1710
1847
  box-shadow: none;
1711
1848
  }
1849
+ .ui.dropdown .inverted.menu > .item:hover,
1712
1850
  .ui.inverted.dropdown .menu > .item:hover {
1713
1851
  background: rgba(255, 255, 255, 0.08);
1714
1852
  color: rgba(255, 255, 255, 0.8);
1715
1853
  }
1716
1854
  .ui.inverted.dropdown.selected,
1855
+ .ui.dropdown .inverted.menu .selected.item,
1717
1856
  .ui.inverted.dropdown .menu .selected.item {
1718
1857
  background: rgba(255, 255, 255, 0.15);
1719
1858
  color: rgba(255, 255, 255, 0.8);
1720
1859
  }
1860
+ .ui.dropdown .inverted.menu > .header,
1721
1861
  .ui.inverted.dropdown .menu > .header {
1722
1862
  color: #FFFFFF;
1723
1863
  }
1724
1864
  .ui.inverted.dropdown > .text > .description,
1865
+ .ui.dropdown .inverted.menu > .item > .description,
1725
1866
  .ui.inverted.dropdown .menu > .item > .description {
1726
1867
  color: rgba(255, 255, 255, 0.5);
1727
1868
  }
1869
+ .ui.dropdown .inverted.menu > .divider,
1728
1870
  .ui.inverted.dropdown .menu > .divider {
1729
1871
  border-top: 1px solid rgba(255, 255, 255, 0.15);
1730
1872
  }
1873
+ .ui.dropdown .inverted.scrolling.menu,
1731
1874
  .ui.inverted.dropdown .scrolling.menu {
1732
1875
  border: none;
1733
1876
  border-top: 1px solid rgba(255, 255, 255, 0.15);
@@ -1750,10 +1893,12 @@ select.ui.dropdown {
1750
1893
  .ui.inverted.selection.visible.dropdown > .text:not(.default) {
1751
1894
  color: rgba(255, 255, 255, 0.9);
1752
1895
  }
1896
+ .ui.selection.active.dropdown .inverted.menu,
1753
1897
  .ui.inverted.selection.active.dropdown .menu,
1754
1898
  .ui.inverted.selection.active.dropdown:hover {
1755
1899
  border-color: rgba(255, 255, 255, 0.15);
1756
1900
  }
1901
+ .ui.selection.dropdown .inverted.menu > .item,
1757
1902
  .ui.inverted.selection.dropdown .menu > .item {
1758
1903
  border-top: 1px solid #242526;
1759
1904
  }
@@ -1765,18 +1910,20 @@ select.ui.dropdown {
1765
1910
  .ui.inverted.default.dropdown:not(.button) > input:focus ~ .text {
1766
1911
  color: rgba(255, 255, 255, 0.7);
1767
1912
  }
1768
- .ui.inverted.active.search.dropdown input.search:focus + .text .icon,
1913
+ .ui.inverted.active.search.dropdown input.search:focus + .text i.icon,
1769
1914
  .ui.inverted.active.search.dropdown input.search:focus + .text .flag {
1770
1915
  opacity: 0.45;
1771
1916
  }
1772
1917
  .ui.inverted.active.search.dropdown input.search:focus + .text {
1773
1918
  color: rgba(255, 255, 255, 0.7) !important;
1774
1919
  }
1920
+ .ui.dropdown .inverted.menu > .message:not(.ui),
1775
1921
  .ui.inverted.dropdown .menu > .message:not(.ui) {
1776
1922
  color: rgba(255, 255, 255, 0.5);
1777
1923
  }
1778
1924
 
1779
1925
  /* Fixing the border */
1926
+ .ui.dropdown .inverted.menu > .item:first-child,
1780
1927
  .ui.inverted.dropdown .menu > .item:first-child {
1781
1928
  border-top-width: 0;
1782
1929
  }
@@ -1822,18 +1969,23 @@ select.ui.dropdown {
1822
1969
  }
1823
1970
 
1824
1971
  /* Scrollbars */
1972
+ .ui.dropdown .inverted.menu::-webkit-scrollbar-track,
1825
1973
  .ui.inverted.dropdown .menu::-webkit-scrollbar-track {
1826
1974
  background: rgba(255, 255, 255, 0.1);
1827
1975
  }
1976
+ .ui.dropdown .inverted.menu::-webkit-scrollbar-thumb,
1828
1977
  .ui.inverted.dropdown .menu::-webkit-scrollbar-thumb {
1829
1978
  background: rgba(255, 255, 255, 0.25);
1830
1979
  }
1980
+ .ui.dropdown .inverted.menu::-webkit-scrollbar-thumb:window-inactive,
1831
1981
  .ui.inverted.dropdown .menu::-webkit-scrollbar-thumb:window-inactive {
1832
1982
  background: rgba(255, 255, 255, 0.15);
1833
1983
  }
1984
+ .ui.dropdown .inverted.menu::-webkit-scrollbar-thumb:hover,
1834
1985
  .ui.inverted.dropdown .menu::-webkit-scrollbar-thumb:hover {
1835
1986
  background: rgba(255, 255, 255, 0.35);
1836
1987
  }
1988
+ .ui.pointing.dropdown > .inverted.menu:after,
1837
1989
  .ui.inverted.pointing.dropdown > .menu:after {
1838
1990
  background: #1B1C1D;
1839
1991
  -webkit-box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Video
2
+ * # Fomantic-UI 2.8.8 - Video
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -67,7 +67,7 @@
67
67
  Icon
68
68
  ---------------*/
69
69
 
70
- .ui.embed > .icon {
70
+ .ui.embed > i.icon {
71
71
  cursor: pointer;
72
72
  position: absolute;
73
73
  top: 0;
@@ -76,7 +76,7 @@
76
76
  height: 100%;
77
77
  z-index: 2;
78
78
  }
79
- .ui.embed > .icon:after {
79
+ .ui.embed > i.icon:after {
80
80
  position: absolute;
81
81
  top: 0;
82
82
  left: 0;
@@ -90,7 +90,7 @@
90
90
  -webkit-transition: opacity 0.5s ease;
91
91
  transition: opacity 0.5s ease;
92
92
  }
93
- .ui.embed > .icon:before {
93
+ .ui.embed > i.icon:before {
94
94
  position: absolute;
95
95
  top: 50%;
96
96
  left: 50%;
@@ -114,12 +114,12 @@
114
114
  Hover
115
115
  ---------------*/
116
116
 
117
- .ui.embed .icon:hover:after {
117
+ .ui.embed i.icon:hover:after {
118
118
  background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
119
119
  background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
120
120
  opacity: 1;
121
121
  }
122
- .ui.embed .icon:hover:before {
122
+ .ui.embed i.icon:hover:before {
123
123
  color: #FFFFFF;
124
124
  }
125
125
 
@@ -127,7 +127,7 @@
127
127
  Active
128
128
  ---------------*/
129
129
 
130
- .ui.active.embed > .icon,
130
+ .ui.active.embed > i.icon,
131
131
  .ui.active.embed > .placeholder {
132
132
  display: none;
133
133
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Modal
2
+ * # Fomantic-UI 2.8.8 - Modal
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -34,10 +34,10 @@
34
34
  user-select: text;
35
35
  will-change: top, left, margin, transform, opacity;
36
36
  }
37
- .ui.modal > :first-child:not(.icon):not(.dimmer),
38
- .ui.modal > .icon:first-child + *,
39
- .ui.modal > .dimmer:first-child + *:not(.icon),
40
- .ui.modal > .dimmer:first-child + .icon + * {
37
+ .ui.modal > :first-child:not(.close):not(.dimmer),
38
+ .ui.modal > i.icon:first-child + *,
39
+ .ui.modal > .dimmer:first-child + *:not(.close),
40
+ .ui.modal > .dimmer:first-child + i.icon + * {
41
41
  border-top-left-radius: 0.28571429rem;
42
42
  border-top-right-radius: 0.28571429rem;
43
43
  }
@@ -153,7 +153,7 @@
153
153
  -ms-flex-item-align: start;
154
154
  align-self: start;
155
155
  }
156
- .ui.modal > .content > .icon + .description,
156
+ .ui.modal > .content > i.icon + .description,
157
157
  .ui.modal > .content > .image + .description {
158
158
  -webkit-box-flex: 0;
159
159
  -ms-flex: 0 1 auto;
@@ -187,6 +187,15 @@
187
187
  .ui.basic.modal > .actions {
188
188
  border-top: none;
189
189
  }
190
+ .ui.modal > .centered,
191
+ .ui.modal > .center.aligned {
192
+ text-align: center;
193
+ }
194
+ .ui.modal > .centered.actions > .button:not(.fluid),
195
+ .ui.modal > .center.aligned.actions > .button:not(.fluid) {
196
+ margin-left: 0.5em;
197
+ margin-right: 0.5em;
198
+ }
190
199
 
191
200
  /*-------------------
192
201
  Responsive
@@ -227,7 +236,7 @@
227
236
 
228
237
  /* Tablet and Mobile */
229
238
  @media only screen and (max-width: 991.98px) {
230
- .ui.modal > .header {
239
+ .ui.modal > .close + .header {
231
240
  padding-right: 2.25rem;
232
241
  }
233
242
  .ui.modal > .close {
@@ -240,8 +249,10 @@
240
249
  /* Mobile */
241
250
  @media only screen and (max-width: 767.98px) {
242
251
  .ui.modal > .header {
243
- padding: 0.75rem 1rem !important;
244
- padding-right: 2.25rem !important;
252
+ padding: 0.75rem 1rem;
253
+ }
254
+ .ui.modal > .close + .header {
255
+ padding-right: 2.25rem;
245
256
  }
246
257
  .ui.overlay.fullscreen.modal > .content.content.content {
247
258
  min-height: calc(100vh - 8.1rem);
@@ -467,8 +478,8 @@
467
478
  top: 0;
468
479
  border-radius: 0;
469
480
  }
470
- .ui.modal > .close.inside + .header,
471
- .ui.fullscreen.modal > .header {
481
+ .ui.modal > .close.inside + .header:not(.centered):not(.center):not(.icon),
482
+ .ui.fullscreen.modal > .close + .header:not(.centered):not(.center):not(.icon) {
472
483
  padding-right: 2.25rem;
473
484
  }
474
485
  .ui.modal > .close.inside,