fomantic-ui-sass 2.8.2 → 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 +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
@@ -52,7 +52,7 @@
|
|
52
52
|
|
53
53
|
|
54
54
|
/* Header */
|
55
|
-
.ui.inverted.segment > .ui.header
|
55
|
+
.ui.inverted.segment > .ui.header .sub.header,
|
56
56
|
.ui.inverted.segment > .ui.header {
|
57
57
|
color: #FFFFFF;
|
58
58
|
}
|
@@ -472,6 +472,12 @@
|
|
472
472
|
.ui.horizontal.segments:not(.stackable) > .segment:first-child {
|
473
473
|
border-left: none;
|
474
474
|
}
|
475
|
+
.ui.horizontal.segments > .segment:first-child {
|
476
|
+
border-radius: 0.28571429rem 0 0 0.28571429rem;
|
477
|
+
}
|
478
|
+
.ui.horizontal.segments > .segment:last-child {
|
479
|
+
border-radius: 0 0.28571429rem 0.28571429rem 0;
|
480
|
+
}
|
475
481
|
|
476
482
|
|
477
483
|
/*******************************
|
@@ -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
|
|
@@ -258,6 +258,13 @@
|
|
258
258
|
border-width: 0 1px 1px 0;
|
259
259
|
display: none;
|
260
260
|
}
|
261
|
+
.ui.right.vertical.steps .step:after {
|
262
|
+
border-width: 1px 0 0 1px;
|
263
|
+
left: 0;
|
264
|
+
right: 100%;
|
265
|
+
-webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
|
266
|
+
transform: translateY(-50%) translateX(-50%) rotate(-45deg);
|
267
|
+
}
|
261
268
|
.ui.vertical.steps .active.step:after {
|
262
269
|
display: block;
|
263
270
|
}
|
@@ -323,7 +330,7 @@
|
|
323
330
|
}
|
324
331
|
|
325
332
|
/* Icon */
|
326
|
-
.ui.steps:not(.unstackable) .step > .icon,
|
333
|
+
.ui.steps:not(.unstackable) .step > i.icon,
|
327
334
|
.ui.ordered.steps:not(.unstackable) .step:before {
|
328
335
|
margin: 0 0 1rem 0;
|
329
336
|
}
|
@@ -365,7 +372,7 @@
|
|
365
372
|
color: #4183C4;
|
366
373
|
}
|
367
374
|
.ui.ordered.steps .step.active:before,
|
368
|
-
.ui.steps .active.step .icon {
|
375
|
+
.ui.steps .active.step i.icon {
|
369
376
|
color: rgba(0, 0, 0, 0.85);
|
370
377
|
}
|
371
378
|
|
@@ -394,7 +401,7 @@
|
|
394
401
|
}
|
395
402
|
|
396
403
|
/* Completed */
|
397
|
-
.ui.steps .step.completed > .icon:before,
|
404
|
+
.ui.steps .step.completed > i.icon:before,
|
398
405
|
.ui.ordered.steps .step.completed:before {
|
399
406
|
color: #21BA45;
|
400
407
|
}
|
@@ -473,7 +480,7 @@
|
|
473
480
|
}
|
474
481
|
|
475
482
|
/* Icon */
|
476
|
-
.ui[class*="tablet stackable"].steps .step > .icon,
|
483
|
+
.ui[class*="tablet stackable"].steps .step > i.icon,
|
477
484
|
.ui[class*="tablet stackable"].ordered.steps .step:before {
|
478
485
|
margin: 0 0 1rem 0;
|
479
486
|
}
|
@@ -636,7 +643,7 @@
|
|
636
643
|
background: #333333;
|
637
644
|
}
|
638
645
|
.ui.inverted.ordered.steps .step.active:before,
|
639
|
-
.ui.inverted.steps .active.step .icon {
|
646
|
+
.ui.inverted.steps .active.step i.icon {
|
640
647
|
color: #ffffff;
|
641
648
|
}
|
642
649
|
|
@@ -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;
|
@@ -64,7 +64,7 @@
|
|
64
64
|
|
65
65
|
/* Loose Coupling */
|
66
66
|
.ui.segment > .ui.dimmer:not(.page) {
|
67
|
-
border-radius: inherit
|
67
|
+
border-radius: inherit;
|
68
68
|
}
|
69
69
|
|
70
70
|
/* Scrollbars */
|
@@ -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
|
/*--------------
|
@@ -287,16 +290,16 @@ body.dimmable > .dimmer {
|
|
287
290
|
transform: translateY(-50%);
|
288
291
|
-webkit-transform: translateY(calc(-50% - 0.5px));
|
289
292
|
}
|
290
|
-
.ui.segment > .ui[class*="top dimmer"] {
|
291
|
-
border-bottom-left-radius: 0
|
292
|
-
border-bottom-right-radius: 0
|
293
|
+
.ui.segment > .ui.ui[class*="top dimmer"] {
|
294
|
+
border-bottom-left-radius: 0;
|
295
|
+
border-bottom-right-radius: 0;
|
293
296
|
}
|
294
|
-
.ui.segment > .ui[class*="center dimmer"] {
|
295
|
-
border-radius: 0
|
297
|
+
.ui.segment > .ui.ui[class*="center dimmer"] {
|
298
|
+
border-radius: 0;
|
296
299
|
}
|
297
|
-
.ui.segment > .ui[class*="bottom dimmer"] {
|
298
|
-
border-top-left-radius: 0
|
299
|
-
border-top-right-radius: 0
|
300
|
+
.ui.segment > .ui.ui[class*="bottom dimmer"] {
|
301
|
+
border-top-left-radius: 0;
|
302
|
+
border-top-right-radius: 0;
|
300
303
|
}
|
301
304
|
.ui[class*="center dimmer"].transition[class*="fade up"].in {
|
302
305
|
-webkit-animation-name: fadeInUpCenter;
|
@@ -116,6 +116,7 @@
|
|
116
116
|
display: block;
|
117
117
|
border: none;
|
118
118
|
height: auto;
|
119
|
+
min-height: 2.57142857rem;
|
119
120
|
text-align: left;
|
120
121
|
border-top: none;
|
121
122
|
line-height: 1em;
|
@@ -131,6 +132,15 @@
|
|
131
132
|
.ui.dropdown .menu > .item:first-child {
|
132
133
|
border-top-width: 0;
|
133
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
|
+
}
|
134
144
|
|
135
145
|
/*--------------
|
136
146
|
Floated Content
|
@@ -148,7 +158,7 @@
|
|
148
158
|
margin-left: 0 !important;
|
149
159
|
margin-right: 1em !important;
|
150
160
|
}
|
151
|
-
.ui.dropdown .menu .item > .icon.floated,
|
161
|
+
.ui.dropdown .menu .item > i.icon.floated,
|
152
162
|
.ui.dropdown .menu .item > .flag.floated,
|
153
163
|
.ui.dropdown .menu .item > .image.floated,
|
154
164
|
.ui.dropdown .menu .item > img.floated {
|
@@ -192,7 +202,7 @@
|
|
192
202
|
padding: 0.5em 1em;
|
193
203
|
}
|
194
204
|
.ui.dropdown .menu > .input:not(.transparent) .button,
|
195
|
-
.ui.dropdown .menu > .input:not(.transparent) .icon,
|
205
|
+
.ui.dropdown .menu > .input:not(.transparent) i.icon,
|
196
206
|
.ui.dropdown .menu > .input:not(.transparent) .label {
|
197
207
|
padding-top: 0.5em;
|
198
208
|
padding-bottom: 0.5em;
|
@@ -208,6 +218,17 @@
|
|
208
218
|
margin: 0 0 0 1em;
|
209
219
|
color: rgba(0, 0, 0, 0.4);
|
210
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
|
+
}
|
211
232
|
|
212
233
|
/*-----------------
|
213
234
|
Message
|
@@ -229,7 +250,7 @@
|
|
229
250
|
top: 0;
|
230
251
|
left: 100%;
|
231
252
|
right: auto;
|
232
|
-
margin: 0
|
253
|
+
margin: 0 -0.5em !important;
|
233
254
|
border-radius: 0.28571429rem !important;
|
234
255
|
z-index: 21 !important;
|
235
256
|
}
|
@@ -245,26 +266,26 @@
|
|
245
266
|
|
246
267
|
|
247
268
|
/* Icons / Flags / Labels / Image */
|
248
|
-
.ui.dropdown > .text > .icon,
|
269
|
+
.ui.dropdown > .text > i.icon,
|
249
270
|
.ui.dropdown > .text > .label,
|
250
271
|
.ui.dropdown > .text > .flag,
|
251
272
|
.ui.dropdown > .text > img,
|
252
273
|
.ui.dropdown > .text > .image {
|
253
274
|
margin-top: 0em;
|
254
275
|
}
|
255
|
-
.ui.dropdown .menu > .item > .icon,
|
276
|
+
.ui.dropdown .menu > .item > i.icon,
|
256
277
|
.ui.dropdown .menu > .item > .label,
|
257
278
|
.ui.dropdown .menu > .item > .flag,
|
258
279
|
.ui.dropdown .menu > .item > .image,
|
259
280
|
.ui.dropdown .menu > .item > img {
|
260
281
|
margin-top: 0em;
|
261
282
|
}
|
262
|
-
.ui.dropdown > .text > .icon,
|
283
|
+
.ui.dropdown > .text > i.icon,
|
263
284
|
.ui.dropdown > .text > .label,
|
264
285
|
.ui.dropdown > .text > .flag,
|
265
286
|
.ui.dropdown > .text > img,
|
266
287
|
.ui.dropdown > .text > .image,
|
267
|
-
.ui.dropdown .menu > .item > .icon,
|
288
|
+
.ui.dropdown .menu > .item > i.icon,
|
268
289
|
.ui.dropdown .menu > .item > .label,
|
269
290
|
.ui.dropdown .menu > .item > .flag,
|
270
291
|
.ui.dropdown .menu > .item > .image,
|
@@ -313,9 +334,9 @@
|
|
313
334
|
}
|
314
335
|
|
315
336
|
/* Automatically float dropdown menu right on last menu item */
|
316
|
-
.ui.menu .right.menu .dropdown:last-child .menu,
|
317
|
-
.ui.menu .right.dropdown.item .menu,
|
318
|
-
.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) {
|
319
340
|
left: auto;
|
320
341
|
right: 0;
|
321
342
|
}
|
@@ -443,12 +464,12 @@ select.ui.dropdown {
|
|
443
464
|
padding: 0.78571429rem 1.14285714rem;
|
444
465
|
}
|
445
466
|
@media only screen and (max-width: 767.98px) {
|
446
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
447
|
-
max-height: 4.00714286rem;
|
448
|
-
}
|
449
467
|
.ui.selection.dropdown.short .menu {
|
450
468
|
max-height: 6.01071429rem;
|
451
469
|
}
|
470
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
471
|
+
max-height: 4.00714286rem;
|
472
|
+
}
|
452
473
|
.ui.selection.dropdown .menu {
|
453
474
|
max-height: 8.01428571rem;
|
454
475
|
}
|
@@ -460,12 +481,12 @@ select.ui.dropdown {
|
|
460
481
|
}
|
461
482
|
}
|
462
483
|
@media only screen and (min-width: 768px) {
|
463
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
464
|
-
max-height: 5.34285714rem;
|
465
|
-
}
|
466
484
|
.ui.selection.dropdown.short .menu {
|
467
485
|
max-height: 8.01428571rem;
|
468
486
|
}
|
487
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
488
|
+
max-height: 5.34285714rem;
|
489
|
+
}
|
469
490
|
.ui.selection.dropdown .menu {
|
470
491
|
max-height: 10.68571429rem;
|
471
492
|
}
|
@@ -477,12 +498,12 @@ select.ui.dropdown {
|
|
477
498
|
}
|
478
499
|
}
|
479
500
|
@media only screen and (min-width: 992px) {
|
480
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
481
|
-
max-height: 8.01428571rem;
|
482
|
-
}
|
483
501
|
.ui.selection.dropdown.short .menu {
|
484
502
|
max-height: 12.02142857rem;
|
485
503
|
}
|
504
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
505
|
+
max-height: 8.01428571rem;
|
506
|
+
}
|
486
507
|
.ui.selection.dropdown .menu {
|
487
508
|
max-height: 16.02857143rem;
|
488
509
|
}
|
@@ -494,12 +515,12 @@ select.ui.dropdown {
|
|
494
515
|
}
|
495
516
|
}
|
496
517
|
@media only screen and (min-width: 1920px) {
|
497
|
-
.ui.selection.dropdown[class*="very short"] .menu {
|
498
|
-
max-height: 10.68571429rem;
|
499
|
-
}
|
500
518
|
.ui.selection.dropdown.short .menu {
|
501
519
|
max-height: 16.02857143rem;
|
502
520
|
}
|
521
|
+
.ui.selection.dropdown[class*="very short"] .menu {
|
522
|
+
max-height: 10.68571429rem;
|
523
|
+
}
|
503
524
|
.ui.selection.dropdown .menu {
|
504
525
|
max-height: 21.37142857rem;
|
505
526
|
}
|
@@ -598,6 +619,58 @@ select.ui.dropdown {
|
|
598
619
|
box-shadow: none !important;
|
599
620
|
}
|
600
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
|
+
|
601
674
|
/*--------------
|
602
675
|
Searchable
|
603
676
|
---------------*/
|
@@ -632,7 +705,7 @@ select.ui.dropdown {
|
|
632
705
|
cursor: text;
|
633
706
|
position: relative;
|
634
707
|
left: 1px;
|
635
|
-
z-index:
|
708
|
+
z-index: auto;
|
636
709
|
}
|
637
710
|
|
638
711
|
/* Search Selection */
|
@@ -660,13 +733,16 @@ select.ui.dropdown {
|
|
660
733
|
}
|
661
734
|
|
662
735
|
/* Filtered Text */
|
663
|
-
.ui.active.search.dropdown input.search:focus + .text .icon,
|
736
|
+
.ui.active.search.dropdown input.search:focus + .text i.icon,
|
664
737
|
.ui.active.search.dropdown input.search:focus + .text .flag {
|
665
738
|
opacity: 0.45;
|
666
739
|
}
|
667
740
|
.ui.active.search.dropdown input.search:focus + .text {
|
668
741
|
color: rgba(115, 115, 115, 0.87) !important;
|
669
742
|
}
|
743
|
+
.ui.search.dropdown.button > span.sizer {
|
744
|
+
display: none;
|
745
|
+
}
|
670
746
|
|
671
747
|
/* Search Menu */
|
672
748
|
.ui.search.dropdown .menu {
|
@@ -726,7 +802,7 @@ select.ui.dropdown {
|
|
726
802
|
|
727
803
|
|
728
804
|
/* Multiple Selection */
|
729
|
-
.ui.multiple.dropdown {
|
805
|
+
.ui.ui.multiple.dropdown {
|
730
806
|
padding: 0.22619048em 3.2em 0.22619048em 0.35714286em;
|
731
807
|
}
|
732
808
|
.ui.multiple.dropdown .menu {
|
@@ -758,6 +834,11 @@ select.ui.dropdown {
|
|
758
834
|
margin: 0.45238095em 0 0.45238095em 0.64285714em;
|
759
835
|
line-height: 1.21428571em;
|
760
836
|
}
|
837
|
+
.ui.multiple.dropdown > .text.default {
|
838
|
+
white-space: nowrap;
|
839
|
+
overflow: hidden;
|
840
|
+
text-overflow: ellipsis;
|
841
|
+
}
|
761
842
|
.ui.multiple.dropdown > .label ~ input.search {
|
762
843
|
margin-left: 0.14285714em !important;
|
763
844
|
}
|
@@ -809,6 +890,9 @@ select.ui.dropdown {
|
|
809
890
|
width: 2.2em;
|
810
891
|
line-height: 1.21428571em;
|
811
892
|
}
|
893
|
+
.ui.multiple.search.dropdown.button {
|
894
|
+
min-width: 14em;
|
895
|
+
}
|
812
896
|
|
813
897
|
/*--------------
|
814
898
|
Inline
|
@@ -1322,20 +1406,20 @@ select.ui.dropdown {
|
|
1322
1406
|
Columnar
|
1323
1407
|
---------------*/
|
1324
1408
|
|
1409
|
+
.ui.column.dropdown > .menu {
|
1410
|
+
-ms-flex-wrap: wrap;
|
1411
|
+
flex-wrap: wrap;
|
1412
|
+
}
|
1325
1413
|
.ui.dropdown[class*="two column"] > .menu > .item {
|
1326
|
-
display: inline-block;
|
1327
1414
|
width: 50%;
|
1328
1415
|
}
|
1329
1416
|
.ui.dropdown[class*="three column"] > .menu > .item {
|
1330
|
-
display: inline-block;
|
1331
1417
|
width: 33%;
|
1332
1418
|
}
|
1333
1419
|
.ui.dropdown[class*="four column"] > .menu > .item {
|
1334
|
-
display: inline-block;
|
1335
1420
|
width: 25%;
|
1336
1421
|
}
|
1337
1422
|
.ui.dropdown[class*="five column"] > .menu > .item {
|
1338
|
-
display: inline-block;
|
1339
1423
|
width: 20%;
|
1340
1424
|
}
|
1341
1425
|
|
@@ -1378,14 +1462,21 @@ select.ui.dropdown {
|
|
1378
1462
|
opacity: 1;
|
1379
1463
|
}
|
1380
1464
|
.ui.simple.dropdown > .menu > .item:active > .menu,
|
1381
|
-
.ui.simple.dropdown
|
1465
|
+
.ui.simple.dropdown .menu .item:hover > .menu {
|
1382
1466
|
overflow: visible;
|
1383
1467
|
width: auto;
|
1384
1468
|
height: auto;
|
1385
1469
|
top: 0 !important;
|
1386
|
-
left: 100
|
1470
|
+
left: 100%;
|
1387
1471
|
opacity: 1;
|
1388
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
|
+
}
|
1389
1480
|
.ui.simple.disabled.dropdown:hover .menu {
|
1390
1481
|
display: none;
|
1391
1482
|
height: 0;
|
@@ -1757,7 +1848,7 @@ select.ui.dropdown {
|
|
1757
1848
|
.ui.inverted.default.dropdown:not(.button) > input:focus ~ .text {
|
1758
1849
|
color: rgba(255, 255, 255, 0.7);
|
1759
1850
|
}
|
1760
|
-
.ui.inverted.active.search.dropdown input.search:focus + .text .icon,
|
1851
|
+
.ui.inverted.active.search.dropdown input.search:focus + .text i.icon,
|
1761
1852
|
.ui.inverted.active.search.dropdown input.search:focus + .text .flag {
|
1762
1853
|
opacity: 0.45;
|
1763
1854
|
}
|