fomantic-ui-sass 2.8.3 → 2.8.7.1
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 +28 -0
- data/README.md +6 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +95 -56
- 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 +121 -88
- 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 +10 -10
- 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 +1 -1
- data/app/assets/javascripts/semantic-ui/dimmer.js +3 -3
- data/app/assets/javascripts/semantic-ui/dropdown.js +62 -23
- data/app/assets/javascripts/semantic-ui/form.js +78 -26
- data/app/assets/javascripts/semantic-ui/modal.js +9 -1
- data/app/assets/javascripts/semantic-ui/popup.js +6 -5
- data/app/assets/javascripts/semantic-ui/progress.js +20 -24
- data/app/assets/javascripts/semantic-ui/search.js +28 -0
- data/app/assets/javascripts/semantic-ui/slider.js +2 -2
- data/app/assets/javascripts/semantic-ui/tab.js +3 -2
- data/app/assets/javascripts/semantic-ui/toast.js +9 -7
- data/app/assets/javascripts/semantic-ui/visibility.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +79 -117
- 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 +23 -17
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
- 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 +124 -15
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +33 -4
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +48 -48
- 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 +17 -14
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +122 -32
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +10 -6
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +2 -0
- 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
@@ -13,6 +13,9 @@
|
|
13
13
|
Text
|
14
14
|
*******************************/
|
15
15
|
|
16
|
+
span.ui.text {
|
17
|
+
line-height: 1;
|
18
|
+
}
|
16
19
|
span.ui.primary.text {
|
17
20
|
color: #2185D0;
|
18
21
|
}
|
@@ -103,6 +106,18 @@ span.ui.black.text {
|
|
103
106
|
span.ui.inverted.black.text {
|
104
107
|
color: #545454;
|
105
108
|
}
|
109
|
+
span.ui.error.text {
|
110
|
+
color: #DB2828;
|
111
|
+
}
|
112
|
+
span.ui.info.text {
|
113
|
+
color: #31CCEC;
|
114
|
+
}
|
115
|
+
span.ui.success.text {
|
116
|
+
color: #21BA45;
|
117
|
+
}
|
118
|
+
span.ui.warning.text {
|
119
|
+
color: #F2C037;
|
120
|
+
}
|
106
121
|
span.ui.disabled.text {
|
107
122
|
opacity: 0.45;
|
108
123
|
}
|
@@ -72,7 +72,7 @@
|
|
72
72
|
.ui.calendar .ui.table tr th {
|
73
73
|
border-left: none;
|
74
74
|
}
|
75
|
-
.ui.calendar .ui.table tr th .icon {
|
75
|
+
.ui.calendar .ui.table tr th i.icon {
|
76
76
|
margin: 0;
|
77
77
|
}
|
78
78
|
.ui.calendar .ui.table tr:first-child th {
|
@@ -104,7 +104,7 @@
|
|
104
104
|
position: absolute;
|
105
105
|
right: 0;
|
106
106
|
}
|
107
|
-
.ui.calendar .ui.table tr .disabled {
|
107
|
+
.ui.ui.calendar .ui.table tr .disabled {
|
108
108
|
pointer-events: auto;
|
109
109
|
cursor: default;
|
110
110
|
color: rgba(40, 40, 40, 0.3);
|
@@ -127,21 +127,28 @@
|
|
127
127
|
-webkit-box-shadow: none;
|
128
128
|
box-shadow: none;
|
129
129
|
}
|
130
|
-
.ui.calendar .ui.table
|
130
|
+
.ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus,
|
131
|
+
.ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus {
|
132
|
+
-webkit-box-shadow: inset 0 0 0 1px #85B7D9;
|
133
|
+
box-shadow: inset 0 0 0 1px #85B7D9;
|
134
|
+
}
|
135
|
+
.ui.inverted.calendar .ui.table.inverted tr td.range {
|
131
136
|
background: rgba(255, 255, 255, 0.08);
|
132
137
|
color: #ffffff;
|
133
138
|
-webkit-box-shadow: none;
|
134
139
|
box-shadow: none;
|
135
140
|
}
|
136
|
-
.ui.calendar:not(.disabled) .calendar:focus .ui.table tbody tr td.focus,
|
137
|
-
.ui.calendar:not(.disabled) .calendar.active .ui.table tbody tr td.focus {
|
141
|
+
.ui.inverted.calendar:not(.disabled) .calendar:focus .ui.table.inverted tbody tr td.focus,
|
142
|
+
.ui.inverted.calendar:not(.disabled) .calendar.active .ui.table.inverted tbody tr td.focus {
|
138
143
|
-webkit-box-shadow: inset 0 0 0 1px #85B7D9;
|
139
144
|
box-shadow: inset 0 0 0 1px #85B7D9;
|
140
145
|
}
|
141
|
-
.ui.
|
142
|
-
|
143
|
-
|
144
|
-
|
146
|
+
.ui.inverted.calendar .ui.inverted.table tr .disabled {
|
147
|
+
color: rgba(225, 225, 225, 0.3);
|
148
|
+
}
|
149
|
+
.ui.inverted.calendar .ui.inverted.table tr .adjacent:not(.disabled) {
|
150
|
+
color: rgba(255, 255, 255, 0.8);
|
151
|
+
background: rgba(255, 255, 255, 0.02);
|
145
152
|
}
|
146
153
|
|
147
154
|
|
@@ -26,7 +26,7 @@
|
|
26
26
|
text-align: center;
|
27
27
|
vertical-align: middle;
|
28
28
|
padding: 1em;
|
29
|
-
background
|
29
|
+
background: rgba(0, 0, 0, 0.85);
|
30
30
|
opacity: 0;
|
31
31
|
line-height: 1;
|
32
32
|
-webkit-animation-fill-mode: both;
|
@@ -155,6 +155,9 @@
|
|
155
155
|
-webkit-transform-origin: center center;
|
156
156
|
transform-origin: center center;
|
157
157
|
}
|
158
|
+
.ui.page.dimmer.modals {
|
159
|
+
-moz-perspective: none;
|
160
|
+
}
|
158
161
|
body.animating.in.dimmable,
|
159
162
|
body.dimmed.dimmable {
|
160
163
|
overflow: hidden;
|
@@ -182,10 +185,10 @@ body.dimmable > .dimmer {
|
|
182
185
|
|
183
186
|
/* Dimmer Color */
|
184
187
|
.blurring.dimmable > .dimmer {
|
185
|
-
background
|
188
|
+
background: rgba(0, 0, 0, 0.6);
|
186
189
|
}
|
187
190
|
.blurring.dimmable > .inverted.dimmer {
|
188
|
-
background
|
191
|
+
background: rgba(255, 255, 255, 0.6);
|
189
192
|
}
|
190
193
|
|
191
194
|
/*--------------
|
@@ -204,13 +207,13 @@ body.dimmable > .dimmer {
|
|
204
207
|
---------------*/
|
205
208
|
|
206
209
|
.medium.medium.medium.medium.medium.dimmer {
|
207
|
-
background
|
210
|
+
background: rgba(0, 0, 0, 0.65);
|
208
211
|
}
|
209
212
|
.light.light.light.light.light.dimmer {
|
210
|
-
background
|
213
|
+
background: rgba(0, 0, 0, 0.45);
|
211
214
|
}
|
212
215
|
.very.light.light.light.light.dimmer {
|
213
|
-
background
|
216
|
+
background: rgba(0, 0, 0, 0.25);
|
214
217
|
}
|
215
218
|
|
216
219
|
/*--------------
|
@@ -218,7 +221,7 @@ body.dimmable > .dimmer {
|
|
218
221
|
---------------*/
|
219
222
|
|
220
223
|
.ui.inverted.dimmer {
|
221
|
-
background
|
224
|
+
background: rgba(255, 255, 255, 0.85);
|
222
225
|
}
|
223
226
|
.ui.inverted.dimmer > .content,
|
224
227
|
.ui.inverted.dimmer > .content > * {
|
@@ -230,13 +233,13 @@ body.dimmable > .dimmer {
|
|
230
233
|
---------------*/
|
231
234
|
|
232
235
|
.medium.medium.medium.medium.medium.inverted.dimmer {
|
233
|
-
background
|
236
|
+
background: rgba(255, 255, 255, 0.65);
|
234
237
|
}
|
235
238
|
.light.light.light.light.light.inverted.dimmer {
|
236
|
-
background
|
239
|
+
background: rgba(255, 255, 255, 0.45);
|
237
240
|
}
|
238
241
|
.very.light.light.light.light.inverted.dimmer {
|
239
|
-
background
|
242
|
+
background: rgba(255, 255, 255, 0.25);
|
240
243
|
}
|
241
244
|
|
242
245
|
/*--------------
|
@@ -252,21 +255,21 @@ body.dimmable > .dimmer {
|
|
252
255
|
width: 0;
|
253
256
|
height: 0;
|
254
257
|
z-index: -100;
|
255
|
-
background
|
258
|
+
background: rgba(0, 0, 0, 0);
|
256
259
|
}
|
257
260
|
.dimmed.dimmable > .ui.simple.dimmer {
|
258
261
|
overflow: visible;
|
259
262
|
opacity: 1;
|
260
263
|
width: 100%;
|
261
264
|
height: 100%;
|
262
|
-
background
|
265
|
+
background: rgba(0, 0, 0, 0.85);
|
263
266
|
z-index: 1;
|
264
267
|
}
|
265
268
|
.ui.simple.inverted.dimmer {
|
266
|
-
background
|
269
|
+
background: rgba(255, 255, 255, 0);
|
267
270
|
}
|
268
271
|
.dimmed.dimmable > .ui.simple.inverted.dimmer {
|
269
|
-
background
|
272
|
+
background: rgba(255, 255, 255, 0.85);
|
270
273
|
}
|
271
274
|
|
272
275
|
/*--------------
|
@@ -132,6 +132,15 @@
|
|
132
132
|
.ui.dropdown .menu > .item:first-child {
|
133
133
|
border-top-width: 0;
|
134
134
|
}
|
135
|
+
.ui.dropdown .menu > .item.vertical {
|
136
|
+
display: -webkit-box;
|
137
|
+
display: -ms-flexbox;
|
138
|
+
display: flex;
|
139
|
+
-webkit-box-orient: vertical;
|
140
|
+
-webkit-box-direction: reverse;
|
141
|
+
-ms-flex-direction: column-reverse;
|
142
|
+
flex-direction: column-reverse;
|
143
|
+
}
|
135
144
|
|
136
145
|
/*--------------
|
137
146
|
Floated Content
|
@@ -149,7 +158,7 @@
|
|
149
158
|
margin-left: 0 !important;
|
150
159
|
margin-right: 1em !important;
|
151
160
|
}
|
152
|
-
.ui.dropdown .menu .item > .icon.floated,
|
161
|
+
.ui.dropdown .menu .item > i.icon.floated,
|
153
162
|
.ui.dropdown .menu .item > .flag.floated,
|
154
163
|
.ui.dropdown .menu .item > .image.floated,
|
155
164
|
.ui.dropdown .menu .item > img.floated {
|
@@ -193,7 +202,7 @@
|
|
193
202
|
padding: 0.5em 1em;
|
194
203
|
}
|
195
204
|
.ui.dropdown .menu > .input:not(.transparent) .button,
|
196
|
-
.ui.dropdown .menu > .input:not(.transparent) .icon,
|
205
|
+
.ui.dropdown .menu > .input:not(.transparent) i.icon,
|
197
206
|
.ui.dropdown .menu > .input:not(.transparent) .label {
|
198
207
|
padding-top: 0.5em;
|
199
208
|
padding-bottom: 0.5em;
|
@@ -209,6 +218,17 @@
|
|
209
218
|
margin: 0 0 0 1em;
|
210
219
|
color: rgba(0, 0, 0, 0.4);
|
211
220
|
}
|
221
|
+
.ui.dropdown .menu > .item.vertical > .description {
|
222
|
+
margin: 0;
|
223
|
+
}
|
224
|
+
|
225
|
+
/*-----------------
|
226
|
+
Item Text
|
227
|
+
-------------------*/
|
228
|
+
|
229
|
+
.ui.dropdown .menu > .item.vertical > .text {
|
230
|
+
margin-bottom: 0.25em;
|
231
|
+
}
|
212
232
|
|
213
233
|
/*-----------------
|
214
234
|
Message
|
@@ -230,7 +250,7 @@
|
|
230
250
|
top: 0;
|
231
251
|
left: 100%;
|
232
252
|
right: auto;
|
233
|
-
margin: 0
|
253
|
+
margin: 0 -0.5em !important;
|
234
254
|
border-radius: 0.28571429rem !important;
|
235
255
|
z-index: 21 !important;
|
236
256
|
}
|
@@ -246,26 +266,26 @@
|
|
246
266
|
|
247
267
|
|
248
268
|
/* Icons / Flags / Labels / Image */
|
249
|
-
.ui.dropdown > .text > .icon,
|
269
|
+
.ui.dropdown > .text > i.icon,
|
250
270
|
.ui.dropdown > .text > .label,
|
251
271
|
.ui.dropdown > .text > .flag,
|
252
272
|
.ui.dropdown > .text > img,
|
253
273
|
.ui.dropdown > .text > .image {
|
254
274
|
margin-top: 0em;
|
255
275
|
}
|
256
|
-
.ui.dropdown .menu > .item > .icon,
|
276
|
+
.ui.dropdown .menu > .item > i.icon,
|
257
277
|
.ui.dropdown .menu > .item > .label,
|
258
278
|
.ui.dropdown .menu > .item > .flag,
|
259
279
|
.ui.dropdown .menu > .item > .image,
|
260
280
|
.ui.dropdown .menu > .item > img {
|
261
281
|
margin-top: 0em;
|
262
282
|
}
|
263
|
-
.ui.dropdown > .text > .icon,
|
283
|
+
.ui.dropdown > .text > i.icon,
|
264
284
|
.ui.dropdown > .text > .label,
|
265
285
|
.ui.dropdown > .text > .flag,
|
266
286
|
.ui.dropdown > .text > img,
|
267
287
|
.ui.dropdown > .text > .image,
|
268
|
-
.ui.dropdown .menu > .item > .icon,
|
288
|
+
.ui.dropdown .menu > .item > i.icon,
|
269
289
|
.ui.dropdown .menu > .item > .label,
|
270
290
|
.ui.dropdown .menu > .item > .flag,
|
271
291
|
.ui.dropdown .menu > .item > .image,
|
@@ -314,9 +334,9 @@
|
|
314
334
|
}
|
315
335
|
|
316
336
|
/* Automatically float dropdown menu right on last menu item */
|
317
|
-
.ui.menu .right.menu .dropdown:last-child .menu,
|
318
|
-
.ui.menu .right.dropdown.item .menu,
|
319
|
-
.ui.buttons > .ui.dropdown:last-child .menu {
|
337
|
+
.ui.menu .right.menu .dropdown:last-child > .menu:not(.left),
|
338
|
+
.ui.menu .right.dropdown.item > .menu:not(.left),
|
339
|
+
.ui.buttons > .ui.dropdown:last-child > .menu:not(.left) {
|
320
340
|
left: auto;
|
321
341
|
right: 0;
|
322
342
|
}
|
@@ -444,12 +464,12 @@ select.ui.dropdown {
|
|
444
464
|
padding: 0.78571429rem 1.14285714rem;
|
445
465
|
}
|
446
466
|
@media only screen and (max-width: 767.98px) {
|
447
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
448
|
-
max-height: 4.00714286rem;
|
449
|
-
}
|
450
467
|
.ui.selection.dropdown.short .menu {
|
451
468
|
max-height: 6.01071429rem;
|
452
469
|
}
|
470
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
471
|
+
max-height: 4.00714286rem;
|
472
|
+
}
|
453
473
|
.ui.selection.dropdown .menu {
|
454
474
|
max-height: 8.01428571rem;
|
455
475
|
}
|
@@ -461,12 +481,12 @@ select.ui.dropdown {
|
|
461
481
|
}
|
462
482
|
}
|
463
483
|
@media only screen and (min-width: 768px) {
|
464
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
465
|
-
max-height: 5.34285714rem;
|
466
|
-
}
|
467
484
|
.ui.selection.dropdown.short .menu {
|
468
485
|
max-height: 8.01428571rem;
|
469
486
|
}
|
487
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
488
|
+
max-height: 5.34285714rem;
|
489
|
+
}
|
470
490
|
.ui.selection.dropdown .menu {
|
471
491
|
max-height: 10.68571429rem;
|
472
492
|
}
|
@@ -478,12 +498,12 @@ select.ui.dropdown {
|
|
478
498
|
}
|
479
499
|
}
|
480
500
|
@media only screen and (min-width: 992px) {
|
481
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
482
|
-
max-height: 8.01428571rem;
|
483
|
-
}
|
484
501
|
.ui.selection.dropdown.short .menu {
|
485
502
|
max-height: 12.02142857rem;
|
486
503
|
}
|
504
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
505
|
+
max-height: 8.01428571rem;
|
506
|
+
}
|
487
507
|
.ui.selection.dropdown .menu {
|
488
508
|
max-height: 16.02857143rem;
|
489
509
|
}
|
@@ -495,12 +515,12 @@ select.ui.dropdown {
|
|
495
515
|
}
|
496
516
|
}
|
497
517
|
@media only screen and (min-width: 1920px) {
|
498
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
499
|
-
max-height: 10.68571429rem;
|
500
|
-
}
|
501
518
|
.ui.selection.dropdown.short .menu {
|
502
519
|
max-height: 16.02857143rem;
|
503
520
|
}
|
521
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
522
|
+
max-height: 10.68571429rem;
|
523
|
+
}
|
504
524
|
.ui.selection.dropdown .menu {
|
505
525
|
max-height: 21.37142857rem;
|
506
526
|
}
|
@@ -599,6 +619,58 @@ select.ui.dropdown {
|
|
599
619
|
box-shadow: none !important;
|
600
620
|
}
|
601
621
|
|
622
|
+
/* CSS specific to iOS devices or firefox mobile only */
|
623
|
+
@supports (-webkit-touch-callout: none) or (-webkit-overflow-scrolling: touch) or (-moz-appearance:none) {
|
624
|
+
@media (-moz-touch-enabled), (pointer: coarse) {
|
625
|
+
.ui.dropdown .scrollhint.menu:not(.hidden):before {
|
626
|
+
-webkit-animation: scrollhint 2s ease 2;
|
627
|
+
animation: scrollhint 2s ease 2;
|
628
|
+
content: '';
|
629
|
+
z-index: 15;
|
630
|
+
display: block;
|
631
|
+
position: absolute;
|
632
|
+
opacity: 0;
|
633
|
+
right: 0.25em;
|
634
|
+
top: 0;
|
635
|
+
height: 100%;
|
636
|
+
border-right: 0.25em solid;
|
637
|
+
border-left: 0;
|
638
|
+
-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%;
|
639
|
+
-webkit-border-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) 1 100%;
|
640
|
+
-o-border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) 1 100%;
|
641
|
+
border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0))) 1 100%;
|
642
|
+
border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)) 1 100%;
|
643
|
+
}
|
644
|
+
.ui.inverted.dropdown .scrollhint.menu:not(.hidden):before {
|
645
|
+
-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%;
|
646
|
+
-webkit-border-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) 1 100%;
|
647
|
+
-o-border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) 1 100%;
|
648
|
+
border-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.75)), to(rgba(255, 255, 255, 0))) 1 100%;
|
649
|
+
border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0)) 1 100%;
|
650
|
+
}
|
651
|
+
@-webkit-keyframes scrollhint {
|
652
|
+
0% {
|
653
|
+
opacity: 1;
|
654
|
+
top: 100%;
|
655
|
+
}
|
656
|
+
100% {
|
657
|
+
opacity: 0;
|
658
|
+
top: 0;
|
659
|
+
}
|
660
|
+
}
|
661
|
+
@keyframes scrollhint {
|
662
|
+
0% {
|
663
|
+
opacity: 1;
|
664
|
+
top: 100%;
|
665
|
+
}
|
666
|
+
100% {
|
667
|
+
opacity: 0;
|
668
|
+
top: 0;
|
669
|
+
}
|
670
|
+
}
|
671
|
+
}
|
672
|
+
}
|
673
|
+
|
602
674
|
/*--------------
|
603
675
|
Searchable
|
604
676
|
---------------*/
|
@@ -633,7 +705,7 @@ select.ui.dropdown {
|
|
633
705
|
cursor: text;
|
634
706
|
position: relative;
|
635
707
|
left: 1px;
|
636
|
-
z-index:
|
708
|
+
z-index: auto;
|
637
709
|
}
|
638
710
|
|
639
711
|
/* Search Selection */
|
@@ -661,13 +733,16 @@ select.ui.dropdown {
|
|
661
733
|
}
|
662
734
|
|
663
735
|
/* Filtered Text */
|
664
|
-
.ui.active.search.dropdown input.search:focus + .text .icon,
|
736
|
+
.ui.active.search.dropdown input.search:focus + .text i.icon,
|
665
737
|
.ui.active.search.dropdown input.search:focus + .text .flag {
|
666
738
|
opacity: 0.45;
|
667
739
|
}
|
668
740
|
.ui.active.search.dropdown input.search:focus + .text {
|
669
741
|
color: rgba(115, 115, 115, 0.87) !important;
|
670
742
|
}
|
743
|
+
.ui.search.dropdown.button > span.sizer {
|
744
|
+
display: none;
|
745
|
+
}
|
671
746
|
|
672
747
|
/* Search Menu */
|
673
748
|
.ui.search.dropdown .menu {
|
@@ -727,7 +802,7 @@ select.ui.dropdown {
|
|
727
802
|
|
728
803
|
|
729
804
|
/* Multiple Selection */
|
730
|
-
.ui.multiple.dropdown {
|
805
|
+
.ui.ui.multiple.dropdown {
|
731
806
|
padding: 0.22619048em 3.2em 0.22619048em 0.35714286em;
|
732
807
|
}
|
733
808
|
.ui.multiple.dropdown .menu {
|
@@ -759,6 +834,11 @@ select.ui.dropdown {
|
|
759
834
|
margin: 0.45238095em 0 0.45238095em 0.64285714em;
|
760
835
|
line-height: 1.21428571em;
|
761
836
|
}
|
837
|
+
.ui.multiple.dropdown > .text.default {
|
838
|
+
white-space: nowrap;
|
839
|
+
overflow: hidden;
|
840
|
+
text-overflow: ellipsis;
|
841
|
+
}
|
762
842
|
.ui.multiple.dropdown > .label ~ input.search {
|
763
843
|
margin-left: 0.14285714em !important;
|
764
844
|
}
|
@@ -810,6 +890,9 @@ select.ui.dropdown {
|
|
810
890
|
width: 2.2em;
|
811
891
|
line-height: 1.21428571em;
|
812
892
|
}
|
893
|
+
.ui.multiple.search.dropdown.button {
|
894
|
+
min-width: 14em;
|
895
|
+
}
|
813
896
|
|
814
897
|
/*--------------
|
815
898
|
Inline
|
@@ -1323,20 +1406,20 @@ select.ui.dropdown {
|
|
1323
1406
|
Columnar
|
1324
1407
|
---------------*/
|
1325
1408
|
|
1409
|
+
.ui.column.dropdown > .menu {
|
1410
|
+
-ms-flex-wrap: wrap;
|
1411
|
+
flex-wrap: wrap;
|
1412
|
+
}
|
1326
1413
|
.ui.dropdown[class*="two column"] > .menu > .item {
|
1327
|
-
display: inline-block;
|
1328
1414
|
width: 50%;
|
1329
1415
|
}
|
1330
1416
|
.ui.dropdown[class*="three column"] > .menu > .item {
|
1331
|
-
display: inline-block;
|
1332
1417
|
width: 33%;
|
1333
1418
|
}
|
1334
1419
|
.ui.dropdown[class*="four column"] > .menu > .item {
|
1335
|
-
display: inline-block;
|
1336
1420
|
width: 25%;
|
1337
1421
|
}
|
1338
1422
|
.ui.dropdown[class*="five column"] > .menu > .item {
|
1339
|
-
display: inline-block;
|
1340
1423
|
width: 20%;
|
1341
1424
|
}
|
1342
1425
|
|
@@ -1379,14 +1462,21 @@ select.ui.dropdown {
|
|
1379
1462
|
opacity: 1;
|
1380
1463
|
}
|
1381
1464
|
.ui.simple.dropdown > .menu > .item:active > .menu,
|
1382
|
-
.ui.simple.dropdown
|
1465
|
+
.ui.simple.dropdown .menu .item:hover > .menu {
|
1383
1466
|
overflow: visible;
|
1384
1467
|
width: auto;
|
1385
1468
|
height: auto;
|
1386
1469
|
top: 0 !important;
|
1387
|
-
left: 100
|
1470
|
+
left: 100%;
|
1388
1471
|
opacity: 1;
|
1389
1472
|
}
|
1473
|
+
.ui.simple.dropdown > .menu > .item:active > .left.menu,
|
1474
|
+
.ui.simple.dropdown .menu .item:hover > .left.menu,
|
1475
|
+
.right.menu .ui.simple.dropdown > .menu > .item:active > .menu:not(.right),
|
1476
|
+
.right.menu .ui.simple.dropdown > .menu .item:hover > .menu:not(.right) {
|
1477
|
+
left: auto;
|
1478
|
+
right: 100%;
|
1479
|
+
}
|
1390
1480
|
.ui.simple.disabled.dropdown:hover .menu {
|
1391
1481
|
display: none;
|
1392
1482
|
height: 0;
|
@@ -1758,7 +1848,7 @@ select.ui.dropdown {
|
|
1758
1848
|
.ui.inverted.default.dropdown:not(.button) > input:focus ~ .text {
|
1759
1849
|
color: rgba(255, 255, 255, 0.7);
|
1760
1850
|
}
|
1761
|
-
.ui.inverted.active.search.dropdown input.search:focus + .text .icon,
|
1851
|
+
.ui.inverted.active.search.dropdown input.search:focus + .text i.icon,
|
1762
1852
|
.ui.inverted.active.search.dropdown input.search:focus + .text .flag {
|
1763
1853
|
opacity: 0.45;
|
1764
1854
|
}
|