fomantic-ui-sass 2.8.2 → 2.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +928 -689
- 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 +610 -426
- 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 +22 -18
- 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/calendar.js +249 -60
- data/app/assets/javascripts/semantic-ui/checkbox.js +2 -2
- data/app/assets/javascripts/semantic-ui/dimmer.js +3 -3
- data/app/assets/javascripts/semantic-ui/dropdown.js +98 -62
- data/app/assets/javascripts/semantic-ui/form.js +97 -35
- data/app/assets/javascripts/semantic-ui/modal.js +9 -1
- data/app/assets/javascripts/semantic-ui/popup.js +8 -7
- data/app/assets/javascripts/semantic-ui/progress.js +20 -24
- data/app/assets/javascripts/semantic-ui/search.js +30 -2
- data/app/assets/javascripts/semantic-ui/slider.js +8 -8
- data/app/assets/javascripts/semantic-ui/tab.js +3 -2
- data/app/assets/javascripts/semantic-ui/toast.js +11 -9
- data/app/assets/javascripts/semantic-ui/visibility.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +86 -93
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +8 -6
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +36 -35
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +39 -23
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +9 -3
- data/app/assets/stylesheets/semantic-ui/elements/_emoji.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +8 -8
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +159 -18
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +33 -4
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +68 -68
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +38 -2
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +7 -1
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +16 -9
- data/app/assets/stylesheets/semantic-ui/elements/_text.scss +15 -0
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +16 -9
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +26 -23
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +123 -32
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +13 -6
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +36 -7
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +32 -3
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +90 -0
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +9 -0
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +7 -7
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +34 -34
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +5 -5
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +4 -4
- data/lib/fomantic/ui/sass/version.rb +2 -2
- metadata +6 -6
@@ -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
|
}
|
@@ -35,9 +35,9 @@
|
|
35
35
|
will-change: top, left, margin, transform, opacity;
|
36
36
|
}
|
37
37
|
.ui.modal > :first-child:not(.icon):not(.dimmer),
|
38
|
-
.ui.modal > .icon:first-child + *,
|
38
|
+
.ui.modal > i.icon:first-child + *,
|
39
39
|
.ui.modal > .dimmer:first-child + *:not(.icon),
|
40
|
-
.ui.modal > .dimmer:first-child + .icon + * {
|
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
|
}
|
@@ -45,6 +45,9 @@
|
|
45
45
|
border-bottom-left-radius: 0.28571429rem;
|
46
46
|
border-bottom-right-radius: 0.28571429rem;
|
47
47
|
}
|
48
|
+
.ui.modal > .ui.dimmer {
|
49
|
+
border-radius: inherit;
|
50
|
+
}
|
48
51
|
|
49
52
|
|
50
53
|
/*******************************
|
@@ -150,7 +153,7 @@
|
|
150
153
|
-ms-flex-item-align: start;
|
151
154
|
align-self: start;
|
152
155
|
}
|
153
|
-
.ui.modal > .content > .icon + .description,
|
156
|
+
.ui.modal > .content > i.icon + .description,
|
154
157
|
.ui.modal > .content > .image + .description {
|
155
158
|
-webkit-box-flex: 0;
|
156
159
|
-ms-flex: 0 1 auto;
|
@@ -178,7 +181,7 @@
|
|
178
181
|
border-top: 1px solid rgba(34, 36, 38, 0.15);
|
179
182
|
text-align: right;
|
180
183
|
}
|
181
|
-
.ui.modal .actions > .button {
|
184
|
+
.ui.modal .actions > .button:not(.fluid) {
|
182
185
|
margin-left: 0.75em;
|
183
186
|
}
|
184
187
|
.ui.basic.modal > .actions {
|
@@ -261,7 +264,7 @@
|
|
261
264
|
-ms-flex-direction: column;
|
262
265
|
flex-direction: column;
|
263
266
|
}
|
264
|
-
.ui.modal .content > .image {
|
267
|
+
.ui.modal > .content > .image {
|
265
268
|
display: block;
|
266
269
|
max-width: 100%;
|
267
270
|
margin: 0 auto !important;
|
@@ -273,7 +276,7 @@
|
|
273
276
|
text-align: center;
|
274
277
|
}
|
275
278
|
/*rtl:ignore*/
|
276
|
-
.ui.modal .content > .description {
|
279
|
+
.ui.modal > .content > .description {
|
277
280
|
display: block;
|
278
281
|
width: 100% !important;
|
279
282
|
margin: 0 !important;
|
@@ -321,6 +324,7 @@
|
|
321
324
|
}
|
322
325
|
.ui.basic.modal > .header {
|
323
326
|
color: #FFFFFF;
|
327
|
+
border-bottom: none;
|
324
328
|
}
|
325
329
|
.ui.basic.modal > .close {
|
326
330
|
top: 1rem;
|
@@ -463,9 +467,11 @@
|
|
463
467
|
top: 0;
|
464
468
|
border-radius: 0;
|
465
469
|
}
|
470
|
+
.ui.modal > .close.inside + .header,
|
466
471
|
.ui.fullscreen.modal > .header {
|
467
472
|
padding-right: 2.25rem;
|
468
473
|
}
|
474
|
+
.ui.modal > .close.inside,
|
469
475
|
.ui.fullscreen.modal > .close {
|
470
476
|
top: 1.0535rem;
|
471
477
|
right: 1rem;
|
@@ -740,6 +746,7 @@
|
|
740
746
|
color: #FFFFFF;
|
741
747
|
}
|
742
748
|
}
|
749
|
+
.ui.inverted.modal > .close.inside,
|
743
750
|
.ui.inverted.fullscreen.modal > .close {
|
744
751
|
color: #FFFFFF;
|
745
752
|
}
|
@@ -98,6 +98,7 @@
|
|
98
98
|
position: absolute;
|
99
99
|
text-transform: none;
|
100
100
|
text-align: left;
|
101
|
+
text-shadow: none;
|
101
102
|
white-space: nowrap;
|
102
103
|
font-size: 1rem;
|
103
104
|
border: 1px solid #D4D4D5;
|
@@ -137,32 +138,31 @@
|
|
137
138
|
[data-tooltip]:after {
|
138
139
|
pointer-events: none;
|
139
140
|
visibility: hidden;
|
141
|
+
opacity: 0;
|
142
|
+
-webkit-transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
|
143
|
+
transition: opacity 0.1s ease, -webkit-transform 0.1s ease;
|
144
|
+
transition: transform 0.1s ease, opacity 0.1s ease;
|
145
|
+
transition: transform 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease;
|
140
146
|
}
|
141
147
|
[data-tooltip]:before {
|
142
|
-
opacity: 0;
|
143
148
|
-webkit-transform: rotate(45deg) scale(0) !important;
|
144
149
|
transform: rotate(45deg) scale(0) !important;
|
145
150
|
-webkit-transform-origin: center top;
|
146
151
|
transform-origin: center top;
|
147
|
-
-webkit-transition: all 0.1s ease;
|
148
|
-
transition: all 0.1s ease;
|
149
152
|
}
|
150
153
|
[data-tooltip]:after {
|
151
|
-
opacity: 1;
|
152
154
|
-webkit-transform-origin: center bottom;
|
153
155
|
transform-origin: center bottom;
|
154
|
-
-webkit-transition: all 0.1s ease;
|
155
|
-
transition: all 0.1s ease;
|
156
156
|
}
|
157
157
|
[data-tooltip]:hover:before,
|
158
158
|
[data-tooltip]:hover:after {
|
159
159
|
visibility: visible;
|
160
160
|
pointer-events: auto;
|
161
|
+
opacity: 1;
|
161
162
|
}
|
162
163
|
[data-tooltip]:hover:before {
|
163
164
|
-webkit-transform: rotate(45deg) scale(1) !important;
|
164
165
|
transform: rotate(45deg) scale(1) !important;
|
165
|
-
opacity: 1;
|
166
166
|
}
|
167
167
|
|
168
168
|
/* Animation Position */
|
@@ -186,6 +186,7 @@
|
|
186
186
|
[data-tooltip][data-position="right center"]:hover:after {
|
187
187
|
-webkit-transform: translateY(-50%) scale(1) !important;
|
188
188
|
transform: translateY(-50%) scale(1) !important;
|
189
|
+
-moz-transform: translateY(-50%) scale(1.0001) !important;
|
189
190
|
}
|
190
191
|
[data-tooltip][data-position="top left"]:after,
|
191
192
|
[data-tooltip][data-position="top right"]:after,
|
@@ -201,6 +202,21 @@
|
|
201
202
|
-webkit-transform: scale(1) !important;
|
202
203
|
transform: scale(1) !important;
|
203
204
|
}
|
205
|
+
[data-tooltip][data-variation~="fixed"]:after {
|
206
|
+
white-space: normal;
|
207
|
+
width: 250px;
|
208
|
+
}
|
209
|
+
[data-tooltip][data-variation*="wide fixed"]:after {
|
210
|
+
width: 350px;
|
211
|
+
}
|
212
|
+
[data-tooltip][data-variation*="very wide fixed"]:after {
|
213
|
+
width: 550px;
|
214
|
+
}
|
215
|
+
@media only screen and (max-width: 767.98px) {
|
216
|
+
[data-tooltip][data-variation~="fixed"]:after {
|
217
|
+
width: 250px;
|
218
|
+
}
|
219
|
+
}
|
204
220
|
|
205
221
|
/*--------------
|
206
222
|
Inverted
|
@@ -660,6 +676,9 @@
|
|
660
676
|
.ui.basic.popup:before {
|
661
677
|
display: none;
|
662
678
|
}
|
679
|
+
.ui.fixed.popup {
|
680
|
+
width: 250px;
|
681
|
+
}
|
663
682
|
|
664
683
|
/*--------------
|
665
684
|
Wide
|
@@ -668,14 +687,24 @@
|
|
668
687
|
.ui.wide.popup {
|
669
688
|
max-width: 350px;
|
670
689
|
}
|
690
|
+
.ui.wide.popup.fixed {
|
691
|
+
width: 350px;
|
692
|
+
}
|
671
693
|
.ui[class*="very wide"].popup {
|
672
694
|
max-width: 550px;
|
673
695
|
}
|
696
|
+
.ui[class*="very wide"].popup.fixed {
|
697
|
+
width: 550px;
|
698
|
+
}
|
674
699
|
@media only screen and (max-width: 767.98px) {
|
675
700
|
.ui.wide.popup,
|
676
701
|
.ui[class*="very wide"].popup {
|
677
702
|
max-width: 250px;
|
678
703
|
}
|
704
|
+
.ui.wide.popup.fixed,
|
705
|
+
.ui[class*="very wide"].popup.fixed {
|
706
|
+
width: 250px;
|
707
|
+
}
|
679
708
|
}
|
680
709
|
|
681
710
|
/*--------------
|
@@ -177,38 +177,67 @@
|
|
177
177
|
|
178
178
|
/* Single Digits */
|
179
179
|
.ui.indicating.progress[data-percent="1"] .bar,
|
180
|
+
.ui.indicating.progress[data-percent^="1."] .bar,
|
180
181
|
.ui.indicating.progress[data-percent="2"] .bar,
|
182
|
+
.ui.indicating.progress[data-percent^="2."] .bar,
|
181
183
|
.ui.indicating.progress[data-percent="3"] .bar,
|
184
|
+
.ui.indicating.progress[data-percent^="3."] .bar,
|
182
185
|
.ui.indicating.progress[data-percent="4"] .bar,
|
186
|
+
.ui.indicating.progress[data-percent^="4."] .bar,
|
183
187
|
.ui.indicating.progress[data-percent="5"] .bar,
|
188
|
+
.ui.indicating.progress[data-percent^="5."] .bar,
|
184
189
|
.ui.indicating.progress[data-percent="6"] .bar,
|
190
|
+
.ui.indicating.progress[data-percent^="6."] .bar,
|
185
191
|
.ui.indicating.progress[data-percent="7"] .bar,
|
192
|
+
.ui.indicating.progress[data-percent^="7."] .bar,
|
186
193
|
.ui.indicating.progress[data-percent="8"] .bar,
|
187
|
-
.ui.indicating.progress[data-percent
|
194
|
+
.ui.indicating.progress[data-percent^="8."] .bar,
|
195
|
+
.ui.indicating.progress[data-percent="9"] .bar,
|
196
|
+
.ui.indicating.progress[data-percent^="9."] .bar {
|
188
197
|
background-color: #D95C5C;
|
189
198
|
}
|
190
199
|
.ui.indicating.progress[data-percent="0"] .label,
|
200
|
+
.ui.indicating.progress[data-percent^="0."] .label,
|
191
201
|
.ui.indicating.progress[data-percent="1"] .label,
|
202
|
+
.ui.indicating.progress[data-percent^="1."] .label,
|
192
203
|
.ui.indicating.progress[data-percent="2"] .label,
|
204
|
+
.ui.indicating.progress[data-percent^="2."] .label,
|
193
205
|
.ui.indicating.progress[data-percent="3"] .label,
|
206
|
+
.ui.indicating.progress[data-percent^="3."] .label,
|
194
207
|
.ui.indicating.progress[data-percent="4"] .label,
|
208
|
+
.ui.indicating.progress[data-percent^="4."] .label,
|
195
209
|
.ui.indicating.progress[data-percent="5"] .label,
|
210
|
+
.ui.indicating.progress[data-percent^="5."] .label,
|
196
211
|
.ui.indicating.progress[data-percent="6"] .label,
|
212
|
+
.ui.indicating.progress[data-percent^="6."] .label,
|
197
213
|
.ui.indicating.progress[data-percent="7"] .label,
|
214
|
+
.ui.indicating.progress[data-percent^="7."] .label,
|
198
215
|
.ui.indicating.progress[data-percent="8"] .label,
|
199
|
-
.ui.indicating.progress[data-percent
|
216
|
+
.ui.indicating.progress[data-percent^="8."] .label,
|
217
|
+
.ui.indicating.progress[data-percent="9"] .label,
|
218
|
+
.ui.indicating.progress[data-percent^="9."] .label {
|
200
219
|
color: rgba(0, 0, 0, 0.87);
|
201
220
|
}
|
202
221
|
.ui.inverted.indicating.progress[data-percent="0"] .label,
|
222
|
+
.ui.inverted.indicating.progress[data-percent^="0."] .label,
|
203
223
|
.ui.inverted.indicating.progress[data-percent="1"] .label,
|
224
|
+
.ui.inverted.indicating.progress[data-percent^="1."] .label,
|
204
225
|
.ui.inverted.indicating.progress[data-percent="2"] .label,
|
226
|
+
.ui.inverted.indicating.progress[data-percent^="2."] .label,
|
205
227
|
.ui.inverted.indicating.progress[data-percent="3"] .label,
|
228
|
+
.ui.inverted.indicating.progress[data-percent^="3."] .label,
|
206
229
|
.ui.inverted.indicating.progress[data-percent="4"] .label,
|
230
|
+
.ui.inverted.indicating.progress[data-percent^="4."] .label,
|
207
231
|
.ui.inverted.indicating.progress[data-percent="5"] .label,
|
232
|
+
.ui.inverted.indicating.progress[data-percent^="5."] .label,
|
208
233
|
.ui.inverted.indicating.progress[data-percent="6"] .label,
|
234
|
+
.ui.inverted.indicating.progress[data-percent^="6."] .label,
|
209
235
|
.ui.inverted.indicating.progress[data-percent="7"] .label,
|
236
|
+
.ui.inverted.indicating.progress[data-percent^="7."] .label,
|
210
237
|
.ui.inverted.indicating.progress[data-percent="8"] .label,
|
211
|
-
.ui.inverted.indicating.progress[data-percent
|
238
|
+
.ui.inverted.indicating.progress[data-percent^="8."] .label,
|
239
|
+
.ui.inverted.indicating.progress[data-percent="9"] .label,
|
240
|
+
.ui.inverted.indicating.progress[data-percent^="9."] .label {
|
212
241
|
color: rgba(255, 255, 255, 0.9);
|
213
242
|
}
|
214
243
|
|
@@ -371,6 +371,96 @@
|
|
371
371
|
*******************************/
|
372
372
|
|
373
373
|
|
374
|
+
/*-------------------
|
375
|
+
Scrolling
|
376
|
+
--------------------*/
|
377
|
+
|
378
|
+
.ui.scrolling.search > .results,
|
379
|
+
.ui.search.long > .results,
|
380
|
+
.ui.search.short > .results {
|
381
|
+
overflow-x: hidden;
|
382
|
+
overflow-y: auto;
|
383
|
+
-webkit-backface-visibility: hidden;
|
384
|
+
backface-visibility: hidden;
|
385
|
+
-webkit-overflow-scrolling: touch;
|
386
|
+
}
|
387
|
+
@media only screen and (max-width: 767.98px) {
|
388
|
+
.ui.scrolling.search > .results {
|
389
|
+
max-height: 12.17714286em;
|
390
|
+
}
|
391
|
+
}
|
392
|
+
@media only screen and (min-width: 768px) {
|
393
|
+
.ui.scrolling.search > .results {
|
394
|
+
max-height: 18.26571429em;
|
395
|
+
}
|
396
|
+
}
|
397
|
+
@media only screen and (min-width: 992px) {
|
398
|
+
.ui.scrolling.search > .results {
|
399
|
+
max-height: 24.35428571em;
|
400
|
+
}
|
401
|
+
}
|
402
|
+
@media only screen and (min-width: 1920px) {
|
403
|
+
.ui.scrolling.search > .results {
|
404
|
+
max-height: 36.53142857em;
|
405
|
+
}
|
406
|
+
}
|
407
|
+
@media only screen and (max-width: 767.98px) {
|
408
|
+
.ui.search.short > .results {
|
409
|
+
max-height: 12.17714286em;
|
410
|
+
}
|
411
|
+
.ui.search[class*="very short"] > .results {
|
412
|
+
max-height: 9.13285714em;
|
413
|
+
}
|
414
|
+
.ui.search.long > .results {
|
415
|
+
max-height: 24.35428571em;
|
416
|
+
}
|
417
|
+
.ui.search[class*="very long"] > .results {
|
418
|
+
max-height: 36.53142857em;
|
419
|
+
}
|
420
|
+
}
|
421
|
+
@media only screen and (min-width: 768px) {
|
422
|
+
.ui.search.short > .results {
|
423
|
+
max-height: 18.26571429em;
|
424
|
+
}
|
425
|
+
.ui.search[class*="very short"] > .results {
|
426
|
+
max-height: 13.69928571em;
|
427
|
+
}
|
428
|
+
.ui.search.long > .results {
|
429
|
+
max-height: 36.53142857em;
|
430
|
+
}
|
431
|
+
.ui.search[class*="very long"] > .results {
|
432
|
+
max-height: 54.79714286em;
|
433
|
+
}
|
434
|
+
}
|
435
|
+
@media only screen and (min-width: 992px) {
|
436
|
+
.ui.search.short > .results {
|
437
|
+
max-height: 24.35428571em;
|
438
|
+
}
|
439
|
+
.ui.search[class*="very short"] > .results {
|
440
|
+
max-height: 18.26571429em;
|
441
|
+
}
|
442
|
+
.ui.search.long > .results {
|
443
|
+
max-height: 48.70857143em;
|
444
|
+
}
|
445
|
+
.ui.search[class*="very long"] > .results {
|
446
|
+
max-height: 73.06285714em;
|
447
|
+
}
|
448
|
+
}
|
449
|
+
@media only screen and (min-width: 1920px) {
|
450
|
+
.ui.search.short > .results {
|
451
|
+
max-height: 36.53142857em;
|
452
|
+
}
|
453
|
+
.ui.search[class*="very short"] > .results {
|
454
|
+
max-height: 27.39857143em;
|
455
|
+
}
|
456
|
+
.ui.search.long > .results {
|
457
|
+
max-height: 73.06285714em;
|
458
|
+
}
|
459
|
+
.ui.search[class*="very long"] > .results {
|
460
|
+
max-height: 109.59428571em;
|
461
|
+
}
|
462
|
+
}
|
463
|
+
|
374
464
|
/*-------------------
|
375
465
|
Left / Right
|
376
466
|
--------------------*/
|
@@ -24,6 +24,7 @@
|
|
24
24
|
transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
|
25
25
|
transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
|
26
26
|
}
|
27
|
+
.ui.shape .side,
|
27
28
|
.ui.shape .sides {
|
28
29
|
-webkit-transform-style: preserve-3d;
|
29
30
|
transform-style: preserve-3d;
|
@@ -98,6 +98,7 @@ body.pushable.dimmed {
|
|
98
98
|
.pushable:not(body) {
|
99
99
|
-webkit-transform: translate3d(0, 0, 0);
|
100
100
|
transform: translate3d(0, 0, 0);
|
101
|
+
overflow-y: hidden;
|
101
102
|
}
|
102
103
|
.pushable:not(body) > .ui.sidebar,
|
103
104
|
.pushable:not(body) > .fixed,
|
@@ -153,7 +154,7 @@ body.pushable > .pusher {
|
|
153
154
|
top: 0;
|
154
155
|
right: 0;
|
155
156
|
content: '';
|
156
|
-
background
|
157
|
+
background: rgba(0, 0, 0, 0.4);
|
157
158
|
overflow: hidden;
|
158
159
|
opacity: 0;
|
159
160
|
-webkit-transition: opacity 500ms;
|
@@ -174,9 +174,15 @@
|
|
174
174
|
display: -webkit-inline-box;
|
175
175
|
display: -ms-inline-flexbox;
|
176
176
|
display: inline-flex;
|
177
|
+
padding: 0.2em 0;
|
177
178
|
position: absolute;
|
178
179
|
-webkit-transform: translate(-50%, -100%);
|
179
180
|
transform: translate(-50%, -100%);
|
181
|
+
white-space: nowrap;
|
182
|
+
}
|
183
|
+
.ui.bottom.aligned.labeled.slider > .labels .label {
|
184
|
+
-webkit-transform: translate(-50%, 100%);
|
185
|
+
transform: translate(-50%, 100%);
|
180
186
|
}
|
181
187
|
.ui.labeled.ticked.slider > .labels .label:after {
|
182
188
|
content: ' ';
|
@@ -187,6 +193,9 @@
|
|
187
193
|
top: 100%;
|
188
194
|
left: 50%;
|
189
195
|
}
|
196
|
+
.ui.bottom.aligned.labeled.ticked.slider > .labels .label:after {
|
197
|
+
top: -100%;
|
198
|
+
}
|
190
199
|
.ui.labeled.ticked.slider > .labels .halftick.label:after {
|
191
200
|
height: 0.75em;
|
192
201
|
}
|