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
@@ -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;
|
@@ -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;
|
@@ -185,6 +186,7 @@
|
|
185
186
|
[data-tooltip][data-position="right center"]:hover:after {
|
186
187
|
-webkit-transform: translateY(-50%) scale(1) !important;
|
187
188
|
transform: translateY(-50%) scale(1) !important;
|
189
|
+
-moz-transform: translateY(-50%) scale(1.0001) !important;
|
188
190
|
}
|
189
191
|
[data-tooltip][data-position="top left"]:after,
|
190
192
|
[data-tooltip][data-position="top right"]:after,
|
@@ -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
|
}
|
@@ -101,7 +101,7 @@
|
|
101
101
|
.ui.toast-container .toast-box > .attached.progress.success .bar.bar.bar {
|
102
102
|
background: #15792d;
|
103
103
|
}
|
104
|
-
.ui.toast-container .toast-box > .attached.progress
|
104
|
+
.ui.toast-container .toast-box > .attached.progress.error .bar.bar.bar {
|
105
105
|
background: #9c1a1a;
|
106
106
|
}
|
107
107
|
.ui.toast-container .toast-box > .attached.progress.neutral .bar.bar.bar {
|
@@ -122,7 +122,7 @@
|
|
122
122
|
.ui.toast-container .toast-box > .ui.message.icon > :not(.icon):not(.actions) {
|
123
123
|
padding-left: 5rem;
|
124
124
|
}
|
125
|
-
.ui.toast-container .toast-box > .ui.message.icon > .icon:not(.close) {
|
125
|
+
.ui.toast-container .toast-box > .ui.message.icon > i.icon:not(.close) {
|
126
126
|
display: inline-block;
|
127
127
|
position: absolute;
|
128
128
|
width: 4rem;
|
@@ -130,7 +130,7 @@
|
|
130
130
|
-webkit-transform: translateY(-50%);
|
131
131
|
transform: translateY(-50%);
|
132
132
|
}
|
133
|
-
.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > .icon:not(.close) {
|
133
|
+
.ui.toast-container .toast-box > .ui.message.icon:not(.vertical).actions > i.icon:not(.close) {
|
134
134
|
top: calc(50% - 1.2em);
|
135
135
|
-webkit-transform: none;
|
136
136
|
transform: none;
|
@@ -392,13 +392,13 @@
|
|
392
392
|
background-color: #FFFFFF;
|
393
393
|
color: rgba(0, 0, 0, 0.87);
|
394
394
|
}
|
395
|
-
.ui.toast > .icon:not(.close) {
|
395
|
+
.ui.toast > i.icon:not(.close) {
|
396
396
|
font-size: 1.5em;
|
397
397
|
}
|
398
|
-
.ui.toast:not(.vertical) > .icon:not(.close) {
|
398
|
+
.ui.toast:not(.vertical) > i.icon:not(.close) {
|
399
399
|
position: absolute;
|
400
400
|
}
|
401
|
-
.ui.toast:not(.vertical) > .icon:not(.close) + .content {
|
401
|
+
.ui.toast:not(.vertical) > i.icon:not(.close) + .content {
|
402
402
|
padding-left: 3em;
|
403
403
|
}
|
404
404
|
.ui.toast:not(.vertical) > .close.icon + .content {
|
@@ -439,7 +439,7 @@
|
|
439
439
|
padding-left: 1em;
|
440
440
|
}
|
441
441
|
.ui.toast.vertical > .ui.image + .content,
|
442
|
-
.ui.toast.vertical > .icon:not(.close) + .content {
|
442
|
+
.ui.toast.vertical > i.icon:not(.close) + .content {
|
443
443
|
padding-left: 1em;
|
444
444
|
}
|
445
445
|
.ui.toast.vertical > .ui.image {
|
@@ -88,8 +88,8 @@
|
|
88
88
|
*/
|
89
89
|
|
90
90
|
/*--------------
|
91
|
-
|
92
|
-
---------------*/
|
91
|
+
Browse
|
92
|
+
---------------*/
|
93
93
|
|
94
94
|
.transition.browse {
|
95
95
|
-webkit-animation-duration: 500ms;
|
@@ -246,8 +246,8 @@
|
|
246
246
|
}
|
247
247
|
|
248
248
|
/*--------------
|
249
|
-
|
250
|
-
---------------*/
|
249
|
+
Drop
|
250
|
+
---------------*/
|
251
251
|
|
252
252
|
.drop.transition {
|
253
253
|
-webkit-transform-origin: top center;
|
@@ -317,8 +317,8 @@
|
|
317
317
|
}
|
318
318
|
|
319
319
|
/*--------------
|
320
|
-
|
321
|
-
---------------*/
|
320
|
+
Fade
|
321
|
+
---------------*/
|
322
322
|
|
323
323
|
.transition.fade.in {
|
324
324
|
-webkit-animation-name: fadeIn;
|
@@ -590,8 +590,8 @@
|
|
590
590
|
}
|
591
591
|
|
592
592
|
/*--------------
|
593
|
-
|
594
|
-
---------------*/
|
593
|
+
Flips
|
594
|
+
---------------*/
|
595
595
|
|
596
596
|
.flip.transition.in,
|
597
597
|
.flip.transition.out {
|
@@ -716,8 +716,8 @@
|
|
716
716
|
}
|
717
717
|
|
718
718
|
/*--------------
|
719
|
-
|
720
|
-
---------------*/
|
719
|
+
Scale
|
720
|
+
---------------*/
|
721
721
|
|
722
722
|
.scale.transition.in {
|
723
723
|
-webkit-animation-name: scaleIn;
|
@@ -779,8 +779,8 @@
|
|
779
779
|
}
|
780
780
|
|
781
781
|
/*--------------
|
782
|
-
|
783
|
-
---------------*/
|
782
|
+
Fly
|
783
|
+
---------------*/
|
784
784
|
|
785
785
|
|
786
786
|
/* Inward */
|
@@ -1238,8 +1238,8 @@
|
|
1238
1238
|
}
|
1239
1239
|
|
1240
1240
|
/*--------------
|
1241
|
-
|
1242
|
-
---------------*/
|
1241
|
+
Slide
|
1242
|
+
---------------*/
|
1243
1243
|
|
1244
1244
|
.transition.slide.in,
|
1245
1245
|
.transition[class*="slide down"].in {
|
@@ -1257,14 +1257,14 @@
|
|
1257
1257
|
.transition[class*="slide left"].in {
|
1258
1258
|
-webkit-animation-name: slideInX;
|
1259
1259
|
animation-name: slideInX;
|
1260
|
-
-webkit-transform-origin: center
|
1261
|
-
transform-origin: center
|
1260
|
+
-webkit-transform-origin: right center;
|
1261
|
+
transform-origin: right center;
|
1262
1262
|
}
|
1263
1263
|
.transition[class*="slide right"].in {
|
1264
1264
|
-webkit-animation-name: slideInX;
|
1265
1265
|
animation-name: slideInX;
|
1266
|
-
-webkit-transform-origin: center
|
1267
|
-
transform-origin: center
|
1266
|
+
-webkit-transform-origin: left center;
|
1267
|
+
transform-origin: left center;
|
1268
1268
|
}
|
1269
1269
|
.transition.slide.out,
|
1270
1270
|
.transition[class*="slide down"].out {
|
@@ -1282,14 +1282,14 @@
|
|
1282
1282
|
.transition[class*="slide left"].out {
|
1283
1283
|
-webkit-animation-name: slideOutX;
|
1284
1284
|
animation-name: slideOutX;
|
1285
|
-
-webkit-transform-origin: center
|
1286
|
-
transform-origin: center
|
1285
|
+
-webkit-transform-origin: right center;
|
1286
|
+
transform-origin: right center;
|
1287
1287
|
}
|
1288
1288
|
.transition[class*="slide right"].out {
|
1289
1289
|
-webkit-animation-name: slideOutX;
|
1290
1290
|
animation-name: slideOutX;
|
1291
|
-
-webkit-transform-origin: center
|
1292
|
-
transform-origin: center
|
1291
|
+
-webkit-transform-origin: left center;
|
1292
|
+
transform-origin: left center;
|
1293
1293
|
}
|
1294
1294
|
|
1295
1295
|
/* In */
|
@@ -1393,8 +1393,8 @@
|
|
1393
1393
|
}
|
1394
1394
|
|
1395
1395
|
/*--------------
|
1396
|
-
|
1397
|
-
---------------*/
|
1396
|
+
Swing
|
1397
|
+
---------------*/
|
1398
1398
|
|
1399
1399
|
.transition.swing {
|
1400
1400
|
-webkit-animation-duration: 800ms;
|
@@ -1415,14 +1415,14 @@
|
|
1415
1415
|
.transition[class*="swing left"].in {
|
1416
1416
|
-webkit-animation-name: swingInY;
|
1417
1417
|
animation-name: swingInY;
|
1418
|
-
-webkit-transform-origin: center
|
1419
|
-
transform-origin: center
|
1418
|
+
-webkit-transform-origin: right center;
|
1419
|
+
transform-origin: right center;
|
1420
1420
|
}
|
1421
1421
|
.transition[class*="swing right"].in {
|
1422
1422
|
-webkit-animation-name: swingInY;
|
1423
1423
|
animation-name: swingInY;
|
1424
|
-
-webkit-transform-origin: center
|
1425
|
-
transform-origin: center
|
1424
|
+
-webkit-transform-origin: left center;
|
1425
|
+
transform-origin: left center;
|
1426
1426
|
}
|
1427
1427
|
.transition.swing.out,
|
1428
1428
|
.transition[class*="swing down"].out {
|
@@ -1440,14 +1440,14 @@
|
|
1440
1440
|
.transition[class*="swing left"].out {
|
1441
1441
|
-webkit-animation-name: swingOutY;
|
1442
1442
|
animation-name: swingOutY;
|
1443
|
-
-webkit-transform-origin: center
|
1444
|
-
transform-origin: center
|
1443
|
+
-webkit-transform-origin: right center;
|
1444
|
+
transform-origin: right center;
|
1445
1445
|
}
|
1446
1446
|
.transition[class*="swing right"].out {
|
1447
1447
|
-webkit-animation-name: swingOutY;
|
1448
1448
|
animation-name: swingOutY;
|
1449
|
-
-webkit-transform-origin: center
|
1450
|
-
transform-origin: center
|
1449
|
+
-webkit-transform-origin: left center;
|
1450
|
+
transform-origin: left center;
|
1451
1451
|
}
|
1452
1452
|
|
1453
1453
|
/* In */
|
@@ -1647,8 +1647,8 @@
|
|
1647
1647
|
}
|
1648
1648
|
|
1649
1649
|
/*--------------
|
1650
|
-
|
1651
|
-
---------------*/
|
1650
|
+
Zoom
|
1651
|
+
---------------*/
|
1652
1652
|
|
1653
1653
|
.transition.zoom.in {
|
1654
1654
|
-webkit-animation-name: zoomIn;
|