fomantic-ui-sass 2.8.6 → 2.8.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 +4 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +6 -41
- 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 +7 -245
- 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/calendar.js +144 -18
- 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 +52 -16
- data/app/assets/javascripts/semantic-ui/form.js +34 -8
- data/app/assets/javascripts/semantic-ui/progress.js +20 -24
- data/app/assets/javascripts/semantic-ui/search.js +1 -0
- data/app/assets/javascripts/semantic-ui/slider.js +2 -2
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +23 -69
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +8 -7
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +8 -8
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +7 -1
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +33 -4
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +32 -32
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/elements/_text.scss +12 -0
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +16 -9
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +14 -14
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +108 -25
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +2 -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/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 +5 -5
@@ -158,13 +158,13 @@
|
|
158
158
|
}
|
159
159
|
|
160
160
|
/* Icon */
|
161
|
-
.ui.steps .step > .icon {
|
161
|
+
.ui.steps .step > i.icon {
|
162
162
|
line-height: 1;
|
163
163
|
font-size: 2.5em;
|
164
164
|
margin: 0 1rem 0 0;
|
165
165
|
}
|
166
|
-
.ui.steps .step > .icon,
|
167
|
-
.ui.steps .step > .icon ~ .content {
|
166
|
+
.ui.steps .step > i.icon,
|
167
|
+
.ui.steps .step > i.icon ~ .content {
|
168
168
|
display: block;
|
169
169
|
-webkit-box-flex: 0;
|
170
170
|
-ms-flex: 0 1 auto;
|
@@ -174,7 +174,7 @@
|
|
174
174
|
}
|
175
175
|
|
176
176
|
/* Horizontal Icon */
|
177
|
-
.ui.steps:not(.vertical) .step > .icon {
|
177
|
+
.ui.steps:not(.vertical) .step > i.icon {
|
178
178
|
width: auto;
|
179
179
|
}
|
180
180
|
|
@@ -330,7 +330,7 @@
|
|
330
330
|
}
|
331
331
|
|
332
332
|
/* Icon */
|
333
|
-
.ui.steps:not(.unstackable) .step > .icon,
|
333
|
+
.ui.steps:not(.unstackable) .step > i.icon,
|
334
334
|
.ui.ordered.steps:not(.unstackable) .step:before {
|
335
335
|
margin: 0 0 1rem 0;
|
336
336
|
}
|
@@ -372,7 +372,7 @@
|
|
372
372
|
color: #4183C4;
|
373
373
|
}
|
374
374
|
.ui.ordered.steps .step.active:before,
|
375
|
-
.ui.steps .active.step .icon {
|
375
|
+
.ui.steps .active.step i.icon {
|
376
376
|
color: rgba(0, 0, 0, 0.85);
|
377
377
|
}
|
378
378
|
|
@@ -401,7 +401,7 @@
|
|
401
401
|
}
|
402
402
|
|
403
403
|
/* Completed */
|
404
|
-
.ui.steps .step.completed > .icon:before,
|
404
|
+
.ui.steps .step.completed > i.icon:before,
|
405
405
|
.ui.ordered.steps .step.completed:before {
|
406
406
|
color: #21BA45;
|
407
407
|
}
|
@@ -480,7 +480,7 @@
|
|
480
480
|
}
|
481
481
|
|
482
482
|
/* Icon */
|
483
|
-
.ui[class*="tablet stackable"].steps .step > .icon,
|
483
|
+
.ui[class*="tablet stackable"].steps .step > i.icon,
|
484
484
|
.ui[class*="tablet stackable"].ordered.steps .step:before {
|
485
485
|
margin: 0 0 1rem 0;
|
486
486
|
}
|
@@ -643,7 +643,7 @@
|
|
643
643
|
background: #333333;
|
644
644
|
}
|
645
645
|
.ui.inverted.ordered.steps .step.active:before,
|
646
|
-
.ui.inverted.steps .active.step .icon {
|
646
|
+
.ui.inverted.steps .active.step i.icon {
|
647
647
|
color: #ffffff;
|
648
648
|
}
|
649
649
|
|
@@ -106,6 +106,18 @@ span.ui.black.text {
|
|
106
106
|
span.ui.inverted.black.text {
|
107
107
|
color: #545454;
|
108
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
|
+
}
|
109
121
|
span.ui.disabled.text {
|
110
122
|
opacity: 0.45;
|
111
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;
|
@@ -185,10 +185,10 @@ body.dimmable > .dimmer {
|
|
185
185
|
|
186
186
|
/* Dimmer Color */
|
187
187
|
.blurring.dimmable > .dimmer {
|
188
|
-
background
|
188
|
+
background: rgba(0, 0, 0, 0.6);
|
189
189
|
}
|
190
190
|
.blurring.dimmable > .inverted.dimmer {
|
191
|
-
background
|
191
|
+
background: rgba(255, 255, 255, 0.6);
|
192
192
|
}
|
193
193
|
|
194
194
|
/*--------------
|
@@ -207,13 +207,13 @@ body.dimmable > .dimmer {
|
|
207
207
|
---------------*/
|
208
208
|
|
209
209
|
.medium.medium.medium.medium.medium.dimmer {
|
210
|
-
background
|
210
|
+
background: rgba(0, 0, 0, 0.65);
|
211
211
|
}
|
212
212
|
.light.light.light.light.light.dimmer {
|
213
|
-
background
|
213
|
+
background: rgba(0, 0, 0, 0.45);
|
214
214
|
}
|
215
215
|
.very.light.light.light.light.dimmer {
|
216
|
-
background
|
216
|
+
background: rgba(0, 0, 0, 0.25);
|
217
217
|
}
|
218
218
|
|
219
219
|
/*--------------
|
@@ -221,7 +221,7 @@ body.dimmable > .dimmer {
|
|
221
221
|
---------------*/
|
222
222
|
|
223
223
|
.ui.inverted.dimmer {
|
224
|
-
background
|
224
|
+
background: rgba(255, 255, 255, 0.85);
|
225
225
|
}
|
226
226
|
.ui.inverted.dimmer > .content,
|
227
227
|
.ui.inverted.dimmer > .content > * {
|
@@ -233,13 +233,13 @@ body.dimmable > .dimmer {
|
|
233
233
|
---------------*/
|
234
234
|
|
235
235
|
.medium.medium.medium.medium.medium.inverted.dimmer {
|
236
|
-
background
|
236
|
+
background: rgba(255, 255, 255, 0.65);
|
237
237
|
}
|
238
238
|
.light.light.light.light.light.inverted.dimmer {
|
239
|
-
background
|
239
|
+
background: rgba(255, 255, 255, 0.45);
|
240
240
|
}
|
241
241
|
.very.light.light.light.light.inverted.dimmer {
|
242
|
-
background
|
242
|
+
background: rgba(255, 255, 255, 0.25);
|
243
243
|
}
|
244
244
|
|
245
245
|
/*--------------
|
@@ -255,21 +255,21 @@ body.dimmable > .dimmer {
|
|
255
255
|
width: 0;
|
256
256
|
height: 0;
|
257
257
|
z-index: -100;
|
258
|
-
background
|
258
|
+
background: rgba(0, 0, 0, 0);
|
259
259
|
}
|
260
260
|
.dimmed.dimmable > .ui.simple.dimmer {
|
261
261
|
overflow: visible;
|
262
262
|
opacity: 1;
|
263
263
|
width: 100%;
|
264
264
|
height: 100%;
|
265
|
-
background
|
265
|
+
background: rgba(0, 0, 0, 0.85);
|
266
266
|
z-index: 1;
|
267
267
|
}
|
268
268
|
.ui.simple.inverted.dimmer {
|
269
|
-
background
|
269
|
+
background: rgba(255, 255, 255, 0);
|
270
270
|
}
|
271
271
|
.dimmed.dimmable > .ui.simple.inverted.dimmer {
|
272
|
-
background
|
272
|
+
background: rgba(255, 255, 255, 0.85);
|
273
273
|
}
|
274
274
|
|
275
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
|
@@ -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,
|
@@ -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
|
---------------*/
|
@@ -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
|
|
@@ -1765,7 +1848,7 @@ select.ui.dropdown {
|
|
1765
1848
|
.ui.inverted.default.dropdown:not(.button) > input:focus ~ .text {
|
1766
1849
|
color: rgba(255, 255, 255, 0.7);
|
1767
1850
|
}
|
1768
|
-
.ui.inverted.active.search.dropdown input.search:focus + .text .icon,
|
1851
|
+
.ui.inverted.active.search.dropdown input.search:focus + .text i.icon,
|
1769
1852
|
.ui.inverted.active.search.dropdown input.search:focus + .text .flag {
|
1770
1853
|
opacity: 0.45;
|
1771
1854
|
}
|