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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +7 -17
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +290 -168
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +2 -2
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/javascripts/semantic-ui/accordion.js +6 -2
- data/app/assets/javascripts/semantic-ui/checkbox.js +2 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +32 -9
- data/app/assets/javascripts/semantic-ui/form.js +9 -9
- data/app/assets/javascripts/semantic-ui/modal.js +4 -1
- data/app/assets/javascripts/semantic-ui/popup.js +4 -1
- data/app/assets/javascripts/semantic-ui/search.js +10 -5
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +69 -25
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +181 -71
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +134 -46
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +107 -47
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +81 -46
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +680 -323
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +39 -39
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +10 -4
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +73 -12
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +34 -10
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +23 -9
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +7 -2
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +74 -27
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +83 -21
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +10 -5
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +4 -1
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +8 -4
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +179 -10
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +20 -5
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +94 -35
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +45 -17
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +4 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +40 -19
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +6 -1
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +6 -1
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +16 -5
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +6 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +15 -2
- data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +12 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +5 -2
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +183 -81
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +7 -3
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -6
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +37 -12
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +42 -10
- data/lib/fomantic/ui/sass/version.rb +2 -2
- metadata +2 -2
@@ -20,13 +20,16 @@
|
|
20
20
|
---------------*/
|
21
21
|
|
22
22
|
.ui.menu {
|
23
|
+
display: -webkit-box;
|
24
|
+
display: -ms-flexbox;
|
23
25
|
display: flex;
|
24
26
|
margin: 1rem 0;
|
25
27
|
font-family: $font-family;
|
26
28
|
background: #FFFFFF;
|
27
29
|
font-weight: normal;
|
28
30
|
border: 1px solid rgba(34, 36, 38, 0.15);
|
29
|
-
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
|
31
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
|
32
|
+
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
|
30
33
|
border-radius: 0.28571429rem;
|
31
34
|
min-height: 2.85714286em;
|
32
35
|
}
|
@@ -52,6 +55,8 @@
|
|
52
55
|
margin: 0;
|
53
56
|
}
|
54
57
|
.ui.menu:not(.vertical) > .menu {
|
58
|
+
display: -webkit-box;
|
59
|
+
display: -ms-flexbox;
|
55
60
|
display: flex;
|
56
61
|
}
|
57
62
|
|
@@ -60,8 +65,12 @@
|
|
60
65
|
---------------*/
|
61
66
|
|
62
67
|
.ui.menu:not(.vertical) .item {
|
68
|
+
display: -webkit-box;
|
69
|
+
display: -ms-flexbox;
|
63
70
|
display: flex;
|
64
|
-
align
|
71
|
+
-webkit-box-align: center;
|
72
|
+
-ms-flex-align: center;
|
73
|
+
align-items: center;
|
65
74
|
}
|
66
75
|
.ui.menu .item {
|
67
76
|
position: relative;
|
@@ -69,7 +78,9 @@
|
|
69
78
|
line-height: 1;
|
70
79
|
text-decoration: none;
|
71
80
|
-webkit-tap-highlight-color: transparent;
|
72
|
-
flex: 0
|
81
|
+
-webkit-box-flex: 0;
|
82
|
+
-ms-flex: 0 0 auto;
|
83
|
+
flex: 0 0 auto;
|
73
84
|
-webkit-user-select: none;
|
74
85
|
-moz-user-select: none;
|
75
86
|
-ms-user-select: none;
|
@@ -79,7 +90,10 @@
|
|
79
90
|
text-transform: none;
|
80
91
|
color: rgba(0, 0, 0, 0.87);
|
81
92
|
font-weight: normal;
|
93
|
+
-webkit-transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
|
94
|
+
transition: background 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
|
82
95
|
transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease;
|
96
|
+
transition: background 0.1s ease, box-shadow 0.1s ease, color 0.1s ease, -webkit-box-shadow 0.1s ease;
|
83
97
|
}
|
84
98
|
.ui.menu > .item:first-child {
|
85
99
|
border-radius: 0.28571429rem 0 0 0.28571429rem;
|
@@ -145,9 +159,16 @@
|
|
145
159
|
|
146
160
|
.ui.menu > .grid,
|
147
161
|
.ui.menu > .container {
|
162
|
+
display: -webkit-box;
|
163
|
+
display: -ms-flexbox;
|
148
164
|
display: flex;
|
149
|
-
align
|
150
|
-
|
165
|
+
-webkit-box-align: inherit;
|
166
|
+
-ms-flex-align: inherit;
|
167
|
+
align-items: inherit;
|
168
|
+
-webkit-box-orient: inherit;
|
169
|
+
-webkit-box-direction: inherit;
|
170
|
+
-ms-flex-direction: inherit;
|
171
|
+
flex-direction: inherit;
|
151
172
|
}
|
152
173
|
|
153
174
|
/*--------------
|
@@ -203,8 +224,12 @@
|
|
203
224
|
border-radius: 0 0 0.28571429rem 0.28571429rem;
|
204
225
|
background: #FFFFFF;
|
205
226
|
margin: 0 0 0;
|
206
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
|
207
|
-
|
227
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
|
228
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
|
229
|
+
-webkit-box-orient: vertical !important;
|
230
|
+
-webkit-box-direction: normal !important;
|
231
|
+
-ms-flex-direction: column !important;
|
232
|
+
flex-direction: column !important;
|
208
233
|
}
|
209
234
|
|
210
235
|
/* Menu Items */
|
@@ -217,7 +242,9 @@
|
|
217
242
|
color: rgba(0, 0, 0, 0.87) !important;
|
218
243
|
text-transform: none !important;
|
219
244
|
font-weight: normal !important;
|
220
|
-
box-shadow: none !important;
|
245
|
+
-webkit-box-shadow: none !important;
|
246
|
+
box-shadow: none !important;
|
247
|
+
-webkit-transition: none !important;
|
221
248
|
transition: none !important;
|
222
249
|
}
|
223
250
|
.ui.menu .ui.dropdown .menu > .item:hover {
|
@@ -276,7 +303,8 @@
|
|
276
303
|
min-width: -moz-max-content;
|
277
304
|
min-width: max-content;
|
278
305
|
margin: 0 0 0 0;
|
279
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
|
306
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
|
307
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
|
280
308
|
border-radius: 0 0.28571429rem 0.28571429rem 0.28571429rem;
|
281
309
|
}
|
282
310
|
.ui.vertical.menu .dropdown.item.upward .menu {
|
@@ -290,7 +318,8 @@
|
|
290
318
|
border-bottom-right-radius: 0;
|
291
319
|
}
|
292
320
|
.ui.vertical.menu .dropdown.active.item {
|
293
|
-
box-shadow: none;
|
321
|
+
-webkit-box-shadow: none;
|
322
|
+
box-shadow: none;
|
294
323
|
}
|
295
324
|
|
296
325
|
/* Evenly Divided */
|
@@ -428,7 +457,8 @@
|
|
428
457
|
background: rgba(0, 0, 0, 0.05);
|
429
458
|
color: rgba(0, 0, 0, 0.95);
|
430
459
|
font-weight: normal;
|
431
|
-
box-shadow: none;
|
460
|
+
-webkit-box-shadow: none;
|
461
|
+
box-shadow: none;
|
432
462
|
}
|
433
463
|
.ui.menu .active.item > i.icon {
|
434
464
|
opacity: 1;
|
@@ -469,6 +499,8 @@ Floated Menu / Item
|
|
469
499
|
/* Left Floated */
|
470
500
|
.ui.menu:not(.vertical) .left.item,
|
471
501
|
.ui.menu:not(.vertical) .left.menu {
|
502
|
+
display: -webkit-box;
|
503
|
+
display: -ms-flexbox;
|
472
504
|
display: flex;
|
473
505
|
margin-right: auto !important;
|
474
506
|
}
|
@@ -476,6 +508,8 @@ Floated Menu / Item
|
|
476
508
|
/* Right Floated */
|
477
509
|
.ui.menu:not(.vertical) .right.item,
|
478
510
|
.ui.menu:not(.vertical) .right.menu {
|
511
|
+
display: -webkit-box;
|
512
|
+
display: -ms-flexbox;
|
479
513
|
display: flex;
|
480
514
|
margin-left: auto !important;
|
481
515
|
}
|
@@ -487,6 +521,8 @@ Floated Menu / Item
|
|
487
521
|
/* Center */
|
488
522
|
.ui.menu:not(.vertical) .center.item,
|
489
523
|
.ui.menu:not(.vertical) .center.menu {
|
524
|
+
display: -webkit-box;
|
525
|
+
display: -ms-flexbox;
|
490
526
|
display: flex;
|
491
527
|
margin-left: auto !important;
|
492
528
|
margin-right: auto !important;
|
@@ -511,9 +547,13 @@ Floated Menu / Item
|
|
511
547
|
|
512
548
|
.ui.vertical.menu {
|
513
549
|
display: block;
|
514
|
-
|
550
|
+
-webkit-box-orient: vertical;
|
551
|
+
-webkit-box-direction: normal;
|
552
|
+
-ms-flex-direction: column;
|
553
|
+
flex-direction: column;
|
515
554
|
background: #FFFFFF;
|
516
|
-
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
|
555
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
|
556
|
+
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
|
517
557
|
}
|
518
558
|
|
519
559
|
/*--- Item ---*/
|
@@ -589,7 +629,8 @@ Floated Menu / Item
|
|
589
629
|
.ui.vertical.menu .active.item {
|
590
630
|
background: rgba(0, 0, 0, 0.05);
|
591
631
|
border-radius: 0;
|
592
|
-
box-shadow: none;
|
632
|
+
-webkit-box-shadow: none;
|
633
|
+
box-shadow: none;
|
593
634
|
}
|
594
635
|
.ui.vertical.menu > .active.item:first-child {
|
595
636
|
border-radius: 0.28571429rem 0.28571429rem 0 0;
|
@@ -615,7 +656,8 @@ Floated Menu / Item
|
|
615
656
|
|
616
657
|
.ui.tabular.menu {
|
617
658
|
border-radius: 0;
|
618
|
-
box-shadow: none !important;
|
659
|
+
-webkit-box-shadow: none !important;
|
660
|
+
box-shadow: none !important;
|
619
661
|
border: none;
|
620
662
|
background: none transparent;
|
621
663
|
border-bottom: 1px solid #D4D4D5;
|
@@ -650,7 +692,8 @@ Floated Menu / Item
|
|
650
692
|
border-color: #D4D4D5;
|
651
693
|
font-weight: bold;
|
652
694
|
margin-bottom: -1px;
|
653
|
-
box-shadow: none;
|
695
|
+
-webkit-box-shadow: none;
|
696
|
+
box-shadow: none;
|
654
697
|
border-radius: 0.28571429rem 0.28571429rem 0 0 !important;
|
655
698
|
}
|
656
699
|
|
@@ -673,7 +716,8 @@ Floated Menu / Item
|
|
673
716
|
.ui.bottom.tabular.menu {
|
674
717
|
background: none transparent;
|
675
718
|
border-radius: 0;
|
676
|
-
box-shadow: none !important;
|
719
|
+
-webkit-box-shadow: none !important;
|
720
|
+
box-shadow: none !important;
|
677
721
|
border-bottom: none;
|
678
722
|
border-top: 1px solid #D4D4D5;
|
679
723
|
}
|
@@ -696,7 +740,8 @@ Floated Menu / Item
|
|
696
740
|
.ui.vertical.tabular.menu {
|
697
741
|
background: none transparent;
|
698
742
|
border-radius: 0;
|
699
|
-
box-shadow: none !important;
|
743
|
+
-webkit-box-shadow: none !important;
|
744
|
+
box-shadow: none !important;
|
700
745
|
border-bottom: none;
|
701
746
|
border-right: 1px solid #D4D4D5;
|
702
747
|
}
|
@@ -719,7 +764,8 @@ Floated Menu / Item
|
|
719
764
|
.ui.vertical.right.tabular.menu {
|
720
765
|
background: none transparent;
|
721
766
|
border-radius: 0;
|
722
|
-
box-shadow: none !important;
|
767
|
+
-webkit-box-shadow: none !important;
|
768
|
+
box-shadow: none !important;
|
723
769
|
border-bottom: none;
|
724
770
|
border-right: none;
|
725
771
|
border-left: 1px solid #D4D4D5;
|
@@ -754,6 +800,8 @@ Floated Menu / Item
|
|
754
800
|
|
755
801
|
.ui.pagination.menu {
|
756
802
|
margin: 0;
|
803
|
+
display: -webkit-inline-box;
|
804
|
+
display: -ms-inline-flexbox;
|
757
805
|
display: inline-flex;
|
758
806
|
vertical-align: middle;
|
759
807
|
}
|
@@ -780,7 +828,8 @@ Floated Menu / Item
|
|
780
828
|
padding-top: 0.92857143em;
|
781
829
|
background-color: rgba(0, 0, 0, 0.05);
|
782
830
|
color: rgba(0, 0, 0, 0.95);
|
783
|
-
box-shadow: none;
|
831
|
+
-webkit-box-shadow: none;
|
832
|
+
box-shadow: none;
|
784
833
|
}
|
785
834
|
|
786
835
|
/*--------------
|
@@ -793,17 +842,21 @@ Floated Menu / Item
|
|
793
842
|
margin-right: -0.35714286em;
|
794
843
|
border-radius: 0;
|
795
844
|
border: none;
|
796
|
-
box-shadow: none;
|
845
|
+
-webkit-box-shadow: none;
|
846
|
+
box-shadow: none;
|
797
847
|
}
|
798
848
|
|
799
849
|
/* Item */
|
800
850
|
.ui.secondary.menu .item {
|
801
|
-
align
|
802
|
-
|
851
|
+
-ms-flex-item-align: center;
|
852
|
+
align-self: center;
|
853
|
+
-webkit-box-shadow: none;
|
854
|
+
box-shadow: none;
|
803
855
|
border: none;
|
804
856
|
padding: 0.78571429em 0.92857143em;
|
805
857
|
margin: 0 0.35714286em;
|
806
858
|
background: none;
|
859
|
+
-webkit-transition: color 0.1s ease;
|
807
860
|
transition: color 0.1s ease;
|
808
861
|
border-radius: 0.28571429rem;
|
809
862
|
}
|
@@ -835,7 +888,8 @@ Floated Menu / Item
|
|
835
888
|
|
836
889
|
/* Active */
|
837
890
|
.ui.secondary.menu .active.item {
|
838
|
-
box-shadow: none;
|
891
|
+
-webkit-box-shadow: none;
|
892
|
+
box-shadow: none;
|
839
893
|
background: rgba(0, 0, 0, 0.05);
|
840
894
|
color: rgba(0, 0, 0, 0.95);
|
841
895
|
border-radius: 0.28571429rem;
|
@@ -843,7 +897,8 @@ Floated Menu / Item
|
|
843
897
|
|
844
898
|
/* Active Hover */
|
845
899
|
.ui.secondary.menu .active.item:hover {
|
846
|
-
box-shadow: none;
|
900
|
+
-webkit-box-shadow: none;
|
901
|
+
box-shadow: none;
|
847
902
|
background: rgba(0, 0, 0, 0.05);
|
848
903
|
color: rgba(0, 0, 0, 0.95);
|
849
904
|
}
|
@@ -873,7 +928,8 @@ Floated Menu / Item
|
|
873
928
|
margin-right: 0;
|
874
929
|
}
|
875
930
|
.ui.secondary.attached.menu {
|
876
|
-
box-shadow: none;
|
931
|
+
-webkit-box-shadow: none;
|
932
|
+
box-shadow: none;
|
877
933
|
}
|
878
934
|
|
879
935
|
/* Sub Menu */
|
@@ -921,10 +977,12 @@ Floated Menu / Item
|
|
921
977
|
border-bottom-color: transparent;
|
922
978
|
border-bottom-style: solid;
|
923
979
|
border-radius: 0;
|
924
|
-
align
|
980
|
+
-ms-flex-item-align: end;
|
981
|
+
align-self: flex-end;
|
925
982
|
margin: 0 0 -2px;
|
926
983
|
padding: 0.85714286em 1.14285714em;
|
927
984
|
border-bottom-width: 2px;
|
985
|
+
-webkit-transition: color 0.1s ease;
|
928
986
|
transition: color 0.1s ease;
|
929
987
|
}
|
930
988
|
.ui.secondary.pointing.menu .ui.dropdown .menu .item {
|
@@ -944,7 +1002,8 @@ Floated Menu / Item
|
|
944
1002
|
color: rgba(0, 0, 0, 0.85) !important;
|
945
1003
|
}
|
946
1004
|
.ui.secondary.pointing.menu .text.item {
|
947
|
-
box-shadow: none !important;
|
1005
|
+
-webkit-box-shadow: none !important;
|
1006
|
+
box-shadow: none !important;
|
948
1007
|
}
|
949
1008
|
.ui.secondary.pointing.menu .item:after {
|
950
1009
|
display: none;
|
@@ -969,7 +1028,8 @@ Floated Menu / Item
|
|
969
1028
|
/* Active */
|
970
1029
|
.ui.secondary.pointing.menu .active.item {
|
971
1030
|
background-color: transparent;
|
972
|
-
box-shadow: none;
|
1031
|
+
-webkit-box-shadow: none;
|
1032
|
+
box-shadow: none;
|
973
1033
|
border-color: currentColor;
|
974
1034
|
font-weight: bold;
|
975
1035
|
color: rgba(0, 0, 0, 0.95);
|
@@ -1038,18 +1098,22 @@ Floated Menu / Item
|
|
1038
1098
|
.ui.text.menu {
|
1039
1099
|
background: none transparent;
|
1040
1100
|
border-radius: 0;
|
1041
|
-
box-shadow: none;
|
1101
|
+
-webkit-box-shadow: none;
|
1102
|
+
box-shadow: none;
|
1042
1103
|
border: none;
|
1043
1104
|
margin: 1em -0.5em;
|
1044
1105
|
}
|
1045
1106
|
.ui.text.menu .item {
|
1046
1107
|
border-radius: 0;
|
1047
|
-
box-shadow: none;
|
1048
|
-
|
1108
|
+
-webkit-box-shadow: none;
|
1109
|
+
box-shadow: none;
|
1110
|
+
-ms-flex-item-align: center;
|
1111
|
+
align-self: center;
|
1049
1112
|
margin: 0 0;
|
1050
1113
|
padding: 0.35714286em 0.5em;
|
1051
1114
|
font-weight: normal;
|
1052
1115
|
color: rgba(0, 0, 0, 0.6);
|
1116
|
+
-webkit-transition: opacity 0.1s ease;
|
1053
1117
|
transition: opacity 0.1s ease;
|
1054
1118
|
}
|
1055
1119
|
|
@@ -1125,7 +1189,8 @@ Floated Menu / Item
|
|
1125
1189
|
.ui.text.menu .active.item {
|
1126
1190
|
background-color: transparent;
|
1127
1191
|
border: none;
|
1128
|
-
box-shadow: none;
|
1192
|
+
-webkit-box-shadow: none;
|
1193
|
+
box-shadow: none;
|
1129
1194
|
font-weight: normal;
|
1130
1195
|
color: rgba(0, 0, 0, 0.95);
|
1131
1196
|
}
|
@@ -1138,10 +1203,12 @@ Floated Menu / Item
|
|
1138
1203
|
|
1139
1204
|
/* Disable Bariations */
|
1140
1205
|
.ui.text.pointing.menu .active.item:after {
|
1141
|
-
box-shadow: none;
|
1206
|
+
-webkit-box-shadow: none;
|
1207
|
+
box-shadow: none;
|
1142
1208
|
}
|
1143
1209
|
.ui.text.attached.menu {
|
1144
|
-
box-shadow: none;
|
1210
|
+
-webkit-box-shadow: none;
|
1211
|
+
box-shadow: none;
|
1145
1212
|
}
|
1146
1213
|
|
1147
1214
|
/* Inverted */
|
@@ -1219,7 +1286,10 @@ Floated Menu / Item
|
|
1219
1286
|
/* Item */
|
1220
1287
|
.ui.labeled.icon.menu .item {
|
1221
1288
|
min-width: 6em;
|
1222
|
-
|
1289
|
+
-webkit-box-orient: vertical;
|
1290
|
+
-webkit-box-direction: normal;
|
1291
|
+
-ms-flex-direction: column;
|
1292
|
+
flex-direction: column;
|
1223
1293
|
}
|
1224
1294
|
|
1225
1295
|
/* Icon */
|
@@ -1247,7 +1317,10 @@ Floated Menu / Item
|
|
1247
1317
|
|
1248
1318
|
@media only screen and (max-width: 767.98px) {
|
1249
1319
|
.ui.stackable.menu {
|
1250
|
-
|
1320
|
+
-webkit-box-orient: vertical;
|
1321
|
+
-webkit-box-direction: normal;
|
1322
|
+
-ms-flex-direction: column;
|
1323
|
+
flex-direction: column;
|
1251
1324
|
}
|
1252
1325
|
.ui.stackable.menu .item {
|
1253
1326
|
width: 100% !important;
|
@@ -1278,7 +1351,10 @@ Floated Menu / Item
|
|
1278
1351
|
.ui.stackable.menu .right.menu,
|
1279
1352
|
.ui.stackable.menu .center.menu,
|
1280
1353
|
.ui.stackable.menu .left.menu {
|
1281
|
-
|
1354
|
+
-webkit-box-orient: vertical;
|
1355
|
+
-webkit-box-direction: normal;
|
1356
|
+
-ms-flex-direction: column;
|
1357
|
+
flex-direction: column;
|
1282
1358
|
}
|
1283
1359
|
}
|
1284
1360
|
|
@@ -1364,7 +1440,8 @@ Floated Menu / Item
|
|
1364
1440
|
.ui.inverted.menu {
|
1365
1441
|
border: 0 solid transparent;
|
1366
1442
|
background: #1B1C1D;
|
1367
|
-
box-shadow: none;
|
1443
|
+
-webkit-box-shadow: none;
|
1444
|
+
box-shadow: none;
|
1368
1445
|
}
|
1369
1446
|
|
1370
1447
|
/* Menu Item */
|
@@ -1396,7 +1473,8 @@ Floated Menu / Item
|
|
1396
1473
|
.ui.inverted.menu .header.item {
|
1397
1474
|
margin: 0;
|
1398
1475
|
background: transparent;
|
1399
|
-
box-shadow: none;
|
1476
|
+
-webkit-box-shadow: none;
|
1477
|
+
box-shadow: none;
|
1400
1478
|
}
|
1401
1479
|
|
1402
1480
|
/* Disabled */
|
@@ -1440,7 +1518,8 @@ Floated Menu / Item
|
|
1440
1518
|
.ui.inverted.pointing.menu .active.item:after {
|
1441
1519
|
background: #3D3E3F;
|
1442
1520
|
margin: 0 !important;
|
1443
|
-
box-shadow: none !important;
|
1521
|
+
-webkit-box-shadow: none !important;
|
1522
|
+
box-shadow: none !important;
|
1444
1523
|
border: none !important;
|
1445
1524
|
}
|
1446
1525
|
|
@@ -1697,6 +1776,8 @@ Floated Menu / Item
|
|
1697
1776
|
--------------------*/
|
1698
1777
|
|
1699
1778
|
.ui.compact.menu {
|
1779
|
+
display: -webkit-inline-box;
|
1780
|
+
display: -ms-inline-flexbox;
|
1700
1781
|
display: inline-flex;
|
1701
1782
|
margin: 0;
|
1702
1783
|
vertical-align: middle;
|
@@ -1741,7 +1822,9 @@ Floated Menu / Item
|
|
1741
1822
|
margin-left: 0 !important;
|
1742
1823
|
margin-right: 0 !important;
|
1743
1824
|
text-align: center;
|
1744
|
-
|
1825
|
+
-webkit-box-pack: center;
|
1826
|
+
-ms-flex-pack: center;
|
1827
|
+
justify-content: center;
|
1745
1828
|
}
|
1746
1829
|
.ui.attached.item.menu:not(.tabular) {
|
1747
1830
|
margin: 0 -1px !important;
|
@@ -1867,6 +1950,7 @@ Floated Menu / Item
|
|
1867
1950
|
border-bottom: 1px solid #D4D4D5;
|
1868
1951
|
border-right: 1px solid #D4D4D5;
|
1869
1952
|
z-index: 2;
|
1953
|
+
-webkit-transition: background 0.1s ease;
|
1870
1954
|
transition: background 0.1s ease;
|
1871
1955
|
}
|
1872
1956
|
.ui.vertical.pointing.menu .item:after {
|
@@ -1979,7 +2063,8 @@ Floated Menu / Item
|
|
1979
2063
|
margin: 0 -1px;
|
1980
2064
|
width: calc(100% + 2px);
|
1981
2065
|
max-width: calc(100% + 2px);
|
1982
|
-
box-shadow: none;
|
2066
|
+
-webkit-box-shadow: none;
|
2067
|
+
box-shadow: none;
|
1983
2068
|
}
|
1984
2069
|
.ui.attached + .ui.attached.menu:not(.top) {
|
1985
2070
|
border-top: none;
|
@@ -2003,7 +2088,8 @@ Floated Menu / Item
|
|
2003
2088
|
margin-top: 0;
|
2004
2089
|
top: 0;
|
2005
2090
|
margin-bottom: 1rem;
|
2006
|
-
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
|
2091
|
+
-webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
|
2092
|
+
box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), none;
|
2007
2093
|
border-radius: 0 0 0.28571429rem 0.28571429rem;
|
2008
2094
|
}
|
2009
2095
|
.ui[class*="bottom attached"].menu:last-child {
|
@@ -2148,7 +2234,8 @@ Floated Menu / Item
|
|
2148
2234
|
|
2149
2235
|
.ui.menu .ui.inverted.inverted.dropdown.item .menu {
|
2150
2236
|
background: #1B1C1D;
|
2151
|
-
box-shadow: none;
|
2237
|
+
-webkit-box-shadow: none;
|
2238
|
+
box-shadow: none;
|
2152
2239
|
}
|
2153
2240
|
.ui.menu .ui.inverted.dropdown .menu > .item {
|
2154
2241
|
color: rgba(255, 255, 255, 0.8) !important;
|
@@ -2168,7 +2255,8 @@ Floated Menu / Item
|
|
2168
2255
|
|
2169
2256
|
/* Vertical */
|
2170
2257
|
.ui.vertical.menu .inverted.dropdown.item .menu {
|
2171
|
-
box-shadow: none;
|
2258
|
+
-webkit-box-shadow: none;
|
2259
|
+
box-shadow: none;
|
2172
2260
|
}
|
2173
2261
|
|
2174
2262
|
|