fomantic-ui-sass 2.7.6 → 2.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  4. data/app/assets/fonts/semantic-ui/brand-icons.svg +7 -17
  5. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  6. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  7. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  9. data/app/assets/fonts/semantic-ui/icons.svg +290 -168
  10. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  11. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  13. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  14. data/app/assets/fonts/semantic-ui/outline-icons.svg +2 -2
  15. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  16. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  17. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  18. data/app/assets/javascripts/semantic-ui/accordion.js +6 -2
  19. data/app/assets/javascripts/semantic-ui/checkbox.js +2 -1
  20. data/app/assets/javascripts/semantic-ui/dropdown.js +32 -9
  21. data/app/assets/javascripts/semantic-ui/form.js +9 -9
  22. data/app/assets/javascripts/semantic-ui/modal.js +4 -1
  23. data/app/assets/javascripts/semantic-ui/popup.js +4 -1
  24. data/app/assets/javascripts/semantic-ui/search.js +10 -5
  25. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +69 -25
  26. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +181 -71
  27. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +134 -46
  28. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +107 -47
  29. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +81 -46
  30. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +680 -323
  31. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +39 -39
  32. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +2 -0
  33. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +10 -4
  34. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +73 -12
  35. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  36. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +34 -10
  37. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +23 -9
  38. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +4 -0
  39. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +2 -1
  40. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +4 -0
  41. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +7 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +74 -27
  43. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +83 -21
  44. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +10 -5
  45. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -0
  46. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +4 -1
  47. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +8 -4
  48. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +179 -10
  49. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +20 -5
  50. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +94 -35
  51. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +4 -0
  52. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +45 -17
  53. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +4 -1
  54. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +40 -19
  55. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +6 -1
  56. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +6 -1
  57. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +16 -5
  58. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +6 -1
  59. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +15 -2
  60. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +12 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -0
  62. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +2 -1
  63. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +5 -2
  64. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2 -1
  65. data/app/assets/stylesheets/semantic-ui/views/_card.scss +183 -81
  66. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +7 -3
  67. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -6
  68. data/app/assets/stylesheets/semantic-ui/views/_item.scss +37 -12
  69. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +42 -10
  70. data/lib/fomantic/ui/sass/version.rb +2 -2
  71. metadata +2 -2
@@ -33,10 +33,18 @@
33
33
  animation-fill-mode: both;
34
34
  -webkit-animation-duration: 0.5s;
35
35
  animation-duration: 0.5s;
36
+ -webkit-transition: background-color 0.5s linear;
36
37
  transition: background-color 0.5s linear;
37
- flex-direction: column;
38
- align-items: center;
39
- justify-content: center;
38
+ -webkit-box-orient: vertical;
39
+ -webkit-box-direction: normal;
40
+ -ms-flex-direction: column;
41
+ flex-direction: column;
42
+ -webkit-box-align: center;
43
+ -ms-flex-align: center;
44
+ align-items: center;
45
+ -webkit-box-pack: center;
46
+ -ms-flex-pack: center;
47
+ justify-content: center;
40
48
  -webkit-user-select: none;
41
49
  -moz-user-select: none;
42
50
  -ms-user-select: none;
@@ -89,6 +97,8 @@
89
97
  .dimmed.dimmable > .ui.animating.dimmer,
90
98
  .dimmed.dimmable > .ui.visible.dimmer,
91
99
  .ui.active.dimmer {
100
+ display: -webkit-box;
101
+ display: -ms-flexbox;
92
102
  display: flex;
93
103
  opacity: 1;
94
104
  }
@@ -122,10 +132,14 @@
122
132
  ---------------*/
123
133
 
124
134
  .ui[class*="top aligned"].dimmer {
125
- justify-content: flex-start;
135
+ -webkit-box-pack: start;
136
+ -ms-flex-pack: start;
137
+ justify-content: flex-start;
126
138
  }
127
139
  .ui[class*="bottom aligned"].dimmer {
128
- justify-content: flex-end;
140
+ -webkit-box-pack: end;
141
+ -ms-flex-pack: end;
142
+ justify-content: flex-end;
129
143
  }
130
144
 
131
145
  /*--------------
@@ -156,6 +170,7 @@ body.dimmable > .dimmer {
156
170
  .blurring.dimmable > :not(.dimmer) {
157
171
  -webkit-filter: initial;
158
172
  filter: initial;
173
+ -webkit-transition: 800ms -webkit-filter ease;
159
174
  transition: 800ms -webkit-filter ease;
160
175
  transition: 800ms filter ease;
161
176
  transition: 800ms filter ease, 800ms -webkit-filter ease;
@@ -19,7 +19,10 @@
19
19
  display: inline-block;
20
20
  outline: none;
21
21
  text-align: left;
22
+ -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
23
+ transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
22
24
  transition: box-shadow 0.1s ease, width 0.1s ease;
25
+ transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
23
26
  -webkit-user-select: none;
24
27
  -moz-user-select: none;
25
28
  -ms-user-select: none;
@@ -52,9 +55,11 @@
52
55
  font-size: 1em;
53
56
  text-shadow: none;
54
57
  text-align: left;
55
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
58
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
59
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
56
60
  border: 1px solid rgba(34, 36, 38, 0.15);
57
61
  border-radius: 0.28571429rem;
62
+ -webkit-transition: opacity 0.1s ease;
58
63
  transition: opacity 0.1s ease;
59
64
  z-index: 11;
60
65
  will-change: transform, opacity;
@@ -76,7 +81,7 @@
76
81
  Dropdown Icon
77
82
  ---------------*/
78
83
 
79
- .ui.dropdown > .dropdown.icon {
84
+ .ui.dropdown > .dropdown.icon.icon {
80
85
  position: relative;
81
86
  width: auto;
82
87
  font-size: 0.85714286em;
@@ -97,6 +102,7 @@
97
102
 
98
103
  .ui.dropdown > .text {
99
104
  display: inline-block;
105
+ -webkit-transition: none;
100
106
  transition: none;
101
107
  }
102
108
 
@@ -118,7 +124,8 @@
118
124
  padding: 0.78571429rem 1.14285714rem !important;
119
125
  text-transform: none;
120
126
  font-weight: normal;
121
- box-shadow: none;
127
+ -webkit-box-shadow: none;
128
+ box-shadow: none;
122
129
  -webkit-touch-callout: none;
123
130
  }
124
131
  .ui.dropdown .menu > .item:first-child {
@@ -167,6 +174,8 @@
167
174
  }
168
175
  .ui.dropdown.dropdown .menu > .input {
169
176
  width: auto;
177
+ display: -webkit-box;
178
+ display: -ms-flexbox;
170
179
  display: flex;
171
180
  margin: 1.14285714rem 0.78571429rem;
172
181
  min-width: 10rem;
@@ -355,10 +364,14 @@
355
364
  display: inline-block;
356
365
  padding: 0.78571429em 3.2em 0.78571429em 1em;
357
366
  color: rgba(0, 0, 0, 0.87);
358
- box-shadow: none;
367
+ -webkit-box-shadow: none;
368
+ box-shadow: none;
359
369
  border: 1px solid rgba(34, 36, 38, 0.15);
360
370
  border-radius: 0.28571429rem;
371
+ -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
372
+ transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
361
373
  transition: box-shadow 0.1s ease, width 0.1s ease;
374
+ transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
362
375
  }
363
376
  .ui.selection.dropdown.visible,
364
377
  .ui.selection.dropdown.active {
@@ -384,6 +397,7 @@ select.ui.dropdown {
384
397
  margin: -0.78571429em;
385
398
  padding: 0.91666667em;
386
399
  opacity: 0.8;
400
+ -webkit-transition: opacity 0.1s ease;
387
401
  transition: opacity 0.1s ease;
388
402
  }
389
403
 
@@ -406,7 +420,9 @@ select.ui.dropdown {
406
420
  min-width: calc(100% + 2px);
407
421
  width: calc(100% + 2px);
408
422
  border-radius: 0 0 0.28571429rem 0.28571429rem;
409
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
423
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
424
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
425
+ -webkit-transition: opacity 0.1s ease;
410
426
  transition: opacity 0.1s ease;
411
427
  }
412
428
  .ui.selection.dropdown .menu:after,
@@ -506,27 +522,32 @@ select.ui.dropdown {
506
522
  /* Hover */
507
523
  .ui.selection.dropdown:hover {
508
524
  border-color: rgba(34, 36, 38, 0.35);
509
- box-shadow: none;
525
+ -webkit-box-shadow: none;
526
+ box-shadow: none;
510
527
  }
511
528
 
512
529
  /* Active */
513
530
  .ui.selection.active.dropdown {
514
531
  border-color: #96C8DA;
515
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
532
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
533
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
516
534
  }
517
535
  .ui.selection.active.dropdown .menu {
518
536
  border-color: #96C8DA;
519
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
537
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
538
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
520
539
  }
521
540
 
522
541
  /* Focus */
523
542
  .ui.selection.dropdown:focus {
524
543
  border-color: #96C8DA;
525
- box-shadow: none;
544
+ -webkit-box-shadow: none;
545
+ box-shadow: none;
526
546
  }
527
547
  .ui.selection.dropdown:focus .menu {
528
548
  border-color: #96C8DA;
529
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
549
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
550
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
530
551
  }
531
552
 
532
553
  /* Visible */
@@ -538,11 +559,13 @@ select.ui.dropdown {
538
559
  /* Visible Hover */
539
560
  .ui.selection.active.dropdown:hover {
540
561
  border-color: #96C8DA;
541
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
562
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
563
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
542
564
  }
543
565
  .ui.selection.active.dropdown:hover .menu {
544
566
  border-color: #96C8DA;
545
- box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
567
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
568
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
546
569
  }
547
570
 
548
571
  /* Dropdown Icon */
@@ -561,11 +584,13 @@ select.ui.dropdown {
561
584
  /* Empty Connecting Border */
562
585
  .ui.active.empty.selection.dropdown {
563
586
  border-radius: 0.28571429rem !important;
564
- box-shadow: none !important;
587
+ -webkit-box-shadow: none !important;
588
+ box-shadow: none !important;
565
589
  }
566
590
  .ui.active.empty.selection.dropdown .menu {
567
591
  border: none !important;
568
- box-shadow: none !important;
592
+ -webkit-box-shadow: none !important;
593
+ box-shadow: none !important;
569
594
  }
570
595
 
571
596
  /*--------------
@@ -582,7 +607,8 @@ select.ui.dropdown {
582
607
  .ui.search.dropdown > input.search {
583
608
  background: none transparent !important;
584
609
  border: none !important;
585
- box-shadow: none !important;
610
+ -webkit-box-shadow: none !important;
611
+ box-shadow: none !important;
586
612
  cursor: text;
587
613
  top: 0;
588
614
  left: 1px;
@@ -715,7 +741,8 @@ select.ui.dropdown {
715
741
  font-size: 1em;
716
742
  padding: 0.35714286em 0.78571429em;
717
743
  margin: 0.14285714rem 0.28571429rem 0.14285714rem 0;
718
- box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
744
+ -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
745
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
719
746
  }
720
747
 
721
748
  /* Dropdown Icon */
@@ -738,6 +765,16 @@ select.ui.dropdown {
738
765
  .ui.multiple.dropdown > .label ~ .text {
739
766
  display: none;
740
767
  }
768
+ .ui.multiple.dropdown > .label:not(.image) > img:not(.centered) {
769
+ margin-right: 0.78571429rem;
770
+ }
771
+ .ui.multiple.dropdown > .label:not(.image) > img.ui:not(.avatar) {
772
+ margin-bottom: 0.39285714rem;
773
+ }
774
+ .ui.multiple.dropdown > .image.label img {
775
+ margin: -0.35714286em 0.78571429em -0.35714286em -0.78571429em;
776
+ height: 1.71428571em;
777
+ }
741
778
 
742
779
  /*-----------------
743
780
  Multiple Search
@@ -806,7 +843,8 @@ select.ui.dropdown {
806
843
  background: transparent;
807
844
  font-weight: bold;
808
845
  color: rgba(0, 0, 0, 0.95);
809
- box-shadow: none;
846
+ -webkit-box-shadow: none;
847
+ box-shadow: none;
810
848
  z-index: 12;
811
849
  }
812
850
 
@@ -848,7 +886,8 @@ select.ui.dropdown {
848
886
  content: '';
849
887
  top: 50%;
850
888
  left: 50%;
851
- box-shadow: 0 0 0 1px transparent;
889
+ -webkit-box-shadow: 0 0 0 1px transparent;
890
+ box-shadow: 0 0 0 1px transparent;
852
891
  margin: -0.64285714em 0 0 -0.64285714em;
853
892
  width: 1.28571429em;
854
893
  height: 1.28571429em;
@@ -882,6 +921,7 @@ select.ui.dropdown {
882
921
  ----------------------*/
883
922
 
884
923
  .ui.loading.dropdown > .text {
924
+ -webkit-transition: none;
885
925
  transition: none;
886
926
  }
887
927
 
@@ -968,6 +1008,7 @@ select.ui.dropdown {
968
1008
 
969
1009
  .ui.dropdown > .clear.dropdown.icon {
970
1010
  opacity: 0.8;
1011
+ -webkit-transition: opacity 0.1s ease;
971
1012
  transition: opacity 0.1s ease;
972
1013
  }
973
1014
  .ui.dropdown > .clear.dropdown.icon:hover {
@@ -1050,7 +1091,8 @@ select.ui.dropdown {
1050
1091
  .ui.upward.dropdown > .menu {
1051
1092
  top: auto;
1052
1093
  bottom: 100%;
1053
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1094
+ -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1095
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1054
1096
  border-radius: 0.28571429rem 0.28571429rem 0 0;
1055
1097
  }
1056
1098
 
@@ -1073,10 +1115,12 @@ select.ui.dropdown {
1073
1115
  .ui.upward.selection.dropdown .menu {
1074
1116
  border-top-width: 1px !important;
1075
1117
  border-bottom-width: 0 !important;
1076
- box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1118
+ -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1119
+ box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1077
1120
  }
1078
1121
  .ui.upward.selection.dropdown:hover {
1079
- box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
1122
+ -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
1123
+ box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
1080
1124
  }
1081
1125
 
1082
1126
  /* Active Upward */
@@ -1086,16 +1130,19 @@ select.ui.dropdown {
1086
1130
 
1087
1131
  /* Visible Upward */
1088
1132
  .ui.upward.selection.dropdown.visible {
1089
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1133
+ -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1134
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1090
1135
  border-radius: 0 0 0.28571429rem 0.28571429rem !important;
1091
1136
  }
1092
1137
 
1093
1138
  /* Visible Hover Upward */
1094
1139
  .ui.upward.active.selection.dropdown:hover {
1095
- box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
1140
+ -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
1141
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
1096
1142
  }
1097
1143
  .ui.upward.active.selection.dropdown:hover .menu {
1098
- box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1144
+ -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1145
+ box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1099
1146
  }
1100
1147
 
1101
1148
  /*--------------
@@ -1122,7 +1169,8 @@ select.ui.dropdown {
1122
1169
  position: static;
1123
1170
  overflow-y: auto;
1124
1171
  border: none;
1125
- box-shadow: none !important;
1172
+ -webkit-box-shadow: none !important;
1173
+ box-shadow: none !important;
1126
1174
  border-radius: 0 !important;
1127
1175
  margin: 0 !important;
1128
1176
  min-width: 100% !important;
@@ -1216,6 +1264,7 @@ select.ui.dropdown {
1216
1264
  opacity: 0;
1217
1265
  width: 0;
1218
1266
  height: 0;
1267
+ -webkit-transition: opacity 0.1s ease;
1219
1268
  transition: opacity 0.1s ease;
1220
1269
  margin-top: 0 !important;
1221
1270
  }
@@ -1280,7 +1329,8 @@ select.ui.dropdown {
1280
1329
  .ui.floating.dropdown .menu {
1281
1330
  left: 0;
1282
1331
  right: auto;
1283
- box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
1332
+ -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
1333
+ box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
1284
1334
  border-radius: 0.28571429rem !important;
1285
1335
  }
1286
1336
  .ui.floating.dropdown > .menu {
@@ -1312,7 +1362,8 @@ select.ui.dropdown {
1312
1362
  transform: rotate(45deg);
1313
1363
  width: 0.5em;
1314
1364
  height: 0.5em;
1315
- box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1365
+ -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1366
+ box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1316
1367
  background: #FFFFFF;
1317
1368
  z-index: 2;
1318
1369
  }
@@ -1463,7 +1514,8 @@ select.ui.dropdown {
1463
1514
  .ui.top.pointing.upward.dropdown .menu:after {
1464
1515
  top: 100% !important;
1465
1516
  bottom: auto !important;
1466
- box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
1517
+ -webkit-box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
1518
+ box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
1467
1519
  margin: -0.25em 0 0;
1468
1520
  }
1469
1521
 
@@ -1477,7 +1529,8 @@ select.ui.dropdown {
1477
1529
  top: auto !important;
1478
1530
  bottom: 0 !important;
1479
1531
  margin: 0 0 1em 0;
1480
- box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1532
+ -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1533
+ box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1481
1534
  }
1482
1535
 
1483
1536
  /* Left Pointing Upward */
@@ -1490,7 +1543,8 @@ select.ui.dropdown {
1490
1543
  top: auto !important;
1491
1544
  bottom: 0 !important;
1492
1545
  margin: 0 0 1em 0;
1493
- box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1546
+ -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1547
+ box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1494
1548
  }
1495
1549
 
1496
1550
  /*--------------------
@@ -1558,7 +1612,8 @@ select.ui.dropdown {
1558
1612
  /* General rules and basic dropdowns */
1559
1613
  .ui.inverted.dropdown .menu {
1560
1614
  background: #1B1C1D;
1561
- box-shadow: none;
1615
+ -webkit-box-shadow: none;
1616
+ box-shadow: none;
1562
1617
  border: 1px solid rgba(255, 255, 255, 0.15);
1563
1618
  }
1564
1619
  .ui.inverted.dropdown .menu > .item {
@@ -1567,7 +1622,8 @@ select.ui.dropdown {
1567
1622
  .ui.inverted.dropdown .menu .active.item {
1568
1623
  background: transparent;
1569
1624
  color: rgba(255, 255, 255, 0.8);
1570
- box-shadow: none;
1625
+ -webkit-box-shadow: none;
1626
+ box-shadow: none;
1571
1627
  }
1572
1628
  .ui.inverted.dropdown .menu > .item:hover {
1573
1629
  background: rgba(255, 255, 255, 0.08);
@@ -1601,7 +1657,8 @@ select.ui.dropdown {
1601
1657
  }
1602
1658
  .ui.inverted.selection.dropdown:hover {
1603
1659
  border-color: rgba(255, 255, 255, 0.25);
1604
- box-shadow: none;
1660
+ -webkit-box-shadow: none;
1661
+ box-shadow: none;
1605
1662
  }
1606
1663
  .ui.inverted.selection.dropdown input {
1607
1664
  color: #FFFFFF;
@@ -1645,7 +1702,8 @@ select.ui.dropdown {
1645
1702
  background-color: rgba(255, 255, 255, 0.7);
1646
1703
  background-image: none;
1647
1704
  color: #000000;
1648
- box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
1705
+ -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
1706
+ box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
1649
1707
  }
1650
1708
  .ui.inverted.multiple.dropdown > .label:hover {
1651
1709
  background-color: rgba(255, 255, 255, 0.9);
@@ -1694,7 +1752,8 @@ select.ui.dropdown {
1694
1752
  }
1695
1753
  .ui.inverted.pointing.dropdown > .menu:after {
1696
1754
  background: #1B1C1D;
1697
- box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
1755
+ -webkit-box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
1756
+ box-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.15);
1698
1757
  }
1699
1758
 
1700
1759
 
@@ -84,8 +84,10 @@
84
84
  height: 100%;
85
85
  z-index: 3;
86
86
  content: '';
87
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
87
88
  background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
88
89
  opacity: 0.5;
90
+ -webkit-transition: opacity 0.5s ease;
89
91
  transition: opacity 0.5s ease;
90
92
  }
91
93
  .ui.embed > .icon:before {
@@ -97,6 +99,7 @@
97
99
  color: #FFFFFF;
98
100
  font-size: 6rem;
99
101
  text-shadow: 0 2px 10px rgba(34, 36, 38, 0.2);
102
+ -webkit-transition: opacity 0.5s ease, color 0.5s ease;
100
103
  transition: opacity 0.5s ease, color 0.5s ease;
101
104
  z-index: 10;
102
105
  }
@@ -112,6 +115,7 @@
112
115
  ---------------*/
113
116
 
114
117
  .ui.embed .icon:hover:after {
118
+ background: -webkit-radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
115
119
  background: radial-gradient(transparent 45%, rgba(0, 0, 0, 0.3));
116
120
  opacity: 1;
117
121
  }