semantic-ui-sass 2.2.6.0 → 2.2.7.0

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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +1 -1
  4. data/app/assets/images/semantic-ui/flags.png +0 -0
  5. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  6. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +3 -16
  7. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +23 -52
  8. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +8 -26
  9. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -6
  10. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1 -1
  11. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -14
  12. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
  13. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  14. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +2 -2
  15. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
  16. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1 -1
  17. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  18. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +1 -8
  19. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
  20. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +1 -1
  21. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
  22. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  23. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  24. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -7
  25. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +14 -36
  26. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  27. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
  28. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  29. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -1
  30. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +4 -2
  31. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -2
  32. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
  33. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +16 -22
  34. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
  35. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
  36. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
  37. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -3
  38. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  39. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  40. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
  42. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  43. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  44. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  45. data/app/assets/stylesheets/semantic-ui/views/_card.scss +3 -12
  46. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +7 -11
  48. data/app/assets/stylesheets/semantic-ui/views/_item.scss +17 -23
  49. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +3 -19
  50. data/lib/semantic/ui/sass/version.rb +2 -2
  51. metadata +3 -3
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Message
2
+ * # Semantic UI 2.2.7 - Message
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -149,7 +149,6 @@
149
149
  }
150
150
  .ui.icon.visible.visible.visible.visible.message {
151
151
  display: -webkit-box;
152
- display: -webkit-flex;
153
152
  display: -ms-flexbox;
154
153
  display: flex;
155
154
  }
@@ -209,19 +208,16 @@
209
208
 
210
209
  .ui.icon.message {
211
210
  display: -webkit-box;
212
- display: -webkit-flex;
213
211
  display: -ms-flexbox;
214
212
  display: flex;
215
213
  width: 100%;
216
214
  -webkit-box-align: center;
217
- -webkit-align-items: center;
218
215
  -ms-flex-align: center;
219
216
  align-items: center;
220
217
  }
221
218
  .ui.icon.message > .icon:not(.close) {
222
219
  display: block;
223
220
  -webkit-box-flex: 0;
224
- -webkit-flex: 0 0 auto;
225
221
  -ms-flex: 0 0 auto;
226
222
  flex: 0 0 auto;
227
223
  width: auto;
@@ -233,7 +229,6 @@
233
229
  .ui.icon.message > .content {
234
230
  display: block;
235
231
  -webkit-box-flex: 1;
236
- -webkit-flex: 1 1 auto;
237
232
  -ms-flex: 1 1 auto;
238
233
  flex: 1 1 auto;
239
234
  vertical-align: middle;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Table
2
+ * # Semantic UI 2.2.7 - Table
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Button
2
+ * # Semantic UI 2.2.7 - Button
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -387,12 +387,10 @@
387
387
 
388
388
  .ui.labeled.button:not(.icon) {
389
389
  display: -webkit-inline-box;
390
- display: -webkit-inline-flex;
391
390
  display: -ms-inline-flexbox;
392
391
  display: inline-flex;
393
392
  -webkit-box-orient: horizontal;
394
393
  -webkit-box-direction: normal;
395
- -webkit-flex-direction: row;
396
394
  -ms-flex-direction: row;
397
395
  flex-direction: row;
398
396
  background: none !important;
@@ -405,11 +403,9 @@
405
403
  }
406
404
  .ui.labeled.button > .label {
407
405
  display: -webkit-box;
408
- display: -webkit-flex;
409
406
  display: -ms-flexbox;
410
407
  display: flex;
411
408
  -webkit-box-align: center;
412
- -webkit-align-items: center;
413
409
  -ms-flex-align: center;
414
410
  align-items: center;
415
411
  margin: 0px 0px 0px -1px !important;
@@ -1032,7 +1028,6 @@
1032
1028
  .ui.attached.buttons {
1033
1029
  position: relative;
1034
1030
  display: -webkit-box;
1035
- display: -webkit-flex;
1036
1031
  display: -ms-flexbox;
1037
1032
  display: flex;
1038
1033
  border-radius: 0em;
@@ -1076,7 +1071,6 @@
1076
1071
  /* Left / Right */
1077
1072
  .ui[class*="left attached"].buttons {
1078
1073
  display: -webkit-inline-box;
1079
- display: -webkit-inline-flex;
1080
1074
  display: -ms-inline-flexbox;
1081
1075
  display: inline-flex;
1082
1076
  margin-right: 0em;
@@ -1093,7 +1087,6 @@
1093
1087
  }
1094
1088
  .ui[class*="right attached"].buttons {
1095
1089
  display: -webkit-inline-box;
1096
- display: -webkit-inline-flex;
1097
1090
  display: -ms-inline-flexbox;
1098
1091
  display: inline-flex;
1099
1092
  margin-left: 0em;
@@ -1191,7 +1184,6 @@
1191
1184
  .ui.fluid.vertical.buttons,
1192
1185
  .ui.fluid.vertical.buttons > .button {
1193
1186
  display: -webkit-box;
1194
- display: -webkit-flex;
1195
1187
  display: -ms-flexbox;
1196
1188
  display: flex;
1197
1189
  width: auto;
@@ -3367,12 +3359,10 @@
3367
3359
 
3368
3360
  .ui.buttons {
3369
3361
  display: -webkit-inline-box;
3370
- display: -webkit-inline-flex;
3371
3362
  display: -ms-inline-flexbox;
3372
3363
  display: inline-flex;
3373
3364
  -webkit-box-orient: horizontal;
3374
3365
  -webkit-box-direction: normal;
3375
- -webkit-flex-direction: row;
3376
3366
  -ms-flex-direction: row;
3377
3367
  flex-direction: row;
3378
3368
  font-size: 0em;
@@ -3395,7 +3385,6 @@
3395
3385
  /* Standard Group */
3396
3386
  .ui.buttons .button {
3397
3387
  -webkit-box-flex: 1;
3398
- -webkit-flex: 1 0 auto;
3399
3388
  -ms-flex: 1 0 auto;
3400
3389
  flex: 1 0 auto;
3401
3390
  margin: 0em;
@@ -3420,12 +3409,10 @@
3420
3409
  /* Vertical Style */
3421
3410
  .ui.vertical.buttons {
3422
3411
  display: -webkit-inline-box;
3423
- display: -webkit-inline-flex;
3424
3412
  display: -ms-inline-flexbox;
3425
3413
  display: inline-flex;
3426
3414
  -webkit-box-orient: vertical;
3427
3415
  -webkit-box-direction: normal;
3428
- -webkit-flex-direction: column;
3429
3416
  -ms-flex-direction: column;
3430
3417
  flex-direction: column;
3431
3418
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Container
2
+ * # Semantic UI 2.2.7 - Container
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Divider
2
+ * # Semantic UI 2.2.7 - Divider
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Flag
2
+ * # Semantic UI 2.2.7 - Flag
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -31,7 +31,7 @@ i.flag:not(.icon) {
31
31
  i.flag:not(.icon):before {
32
32
  display: inline-block;
33
33
  content: '';
34
- background: image-url("semantic-ui/flags.png") no-repeat -108px -1976px;
34
+ background: image-url("./semantic-ui/flags.png") no-repeat -108px -1976px;
35
35
  width: 16px;
36
36
  height: 11px;
37
37
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Header
2
+ * # Semantic UI 2.2.7 - Header
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Icon
2
+ * # Semantic UI 2.2.7 - Icon
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Image
2
+ * # Semantic UI 2.2.7 - Image
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Input
2
+ * # Semantic UI 2.2.7 - Input
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -23,7 +23,6 @@
23
23
  font-weight: normal;
24
24
  font-style: normal;
25
25
  display: -webkit-inline-box;
26
- display: -webkit-inline-flex;
27
26
  display: -ms-inline-flexbox;
28
27
  display: inline-flex;
29
28
  color: rgba(0, 0, 0, 0.87);
@@ -32,7 +31,6 @@
32
31
  margin: 0em;
33
32
  max-width: 100%;
34
33
  -webkit-box-flex: 1;
35
- -webkit-flex: 1 0 auto;
36
34
  -ms-flex: 1 0 auto;
37
35
  flex: 1 0 auto;
38
36
  outline: none;
@@ -305,7 +303,6 @@
305
303
  /* Adjacent Label */
306
304
  .ui.labeled.input > .label {
307
305
  -webkit-box-flex: 0;
308
- -webkit-flex: 0 0 auto;
309
306
  -ms-flex: 0 0 auto;
310
307
  flex: 0 0 auto;
311
308
  margin: 0;
@@ -391,15 +388,12 @@
391
388
  .ui.action.input > .button,
392
389
  .ui.action.input > .buttons {
393
390
  display: -webkit-box;
394
- display: -webkit-flex;
395
391
  display: -ms-flexbox;
396
392
  display: flex;
397
393
  -webkit-box-align: center;
398
- -webkit-align-items: center;
399
394
  -ms-flex-align: center;
400
395
  align-items: center;
401
396
  -webkit-box-flex: 0;
402
- -webkit-flex: 0 0 auto;
403
397
  -ms-flex: 0 0 auto;
404
398
  flex: 0 0 auto;
405
399
  }
@@ -470,7 +464,6 @@
470
464
 
471
465
  .ui.fluid.input {
472
466
  display: -webkit-box;
473
- display: -webkit-flex;
474
467
  display: -ms-flexbox;
475
468
  display: flex;
476
469
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Label
2
+ * # Semantic UI 2.2.7 - Label
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - List
2
+ * # Semantic UI 2.2.7 - List
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Loader
2
+ * # Semantic UI 2.2.7 - Loader
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Rail
2
+ * # Semantic UI 2.2.7 - Rail
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Reveal
2
+ * # Semantic UI 2.2.7 - Reveal
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Segment
2
+ * # Semantic UI 2.2.7 - Segment
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -226,7 +226,6 @@
226
226
  /* Compact Group */
227
227
  .ui.compact.segments {
228
228
  display: -webkit-inline-box;
229
- display: -webkit-inline-flex;
230
229
  display: -ms-inline-flexbox;
231
230
  display: inline-flex;
232
231
  }
@@ -234,7 +233,6 @@
234
233
  .ui.segments .compact.segment {
235
234
  display: block;
236
235
  -webkit-box-flex: 0;
237
- -webkit-flex: 0 1 auto;
238
236
  -ms-flex: 0 1 auto;
239
237
  flex: 0 1 auto;
240
238
  }
@@ -270,7 +268,6 @@
270
268
  .ui.segments {
271
269
  -webkit-box-orient: vertical;
272
270
  -webkit-box-direction: normal;
273
- -webkit-flex-direction: column;
274
271
  -ms-flex-direction: column;
275
272
  flex-direction: column;
276
273
  position: relative;
@@ -336,12 +333,10 @@
336
333
  /* Horizontal Group */
337
334
  .ui.horizontal.segments {
338
335
  display: -webkit-box;
339
- display: -webkit-flex;
340
336
  display: -ms-flexbox;
341
337
  display: flex;
342
338
  -webkit-box-orient: horizontal;
343
339
  -webkit-box-direction: normal;
344
- -webkit-flex-direction: row;
345
340
  -ms-flex-direction: row;
346
341
  flex-direction: row;
347
342
  background-color: transparent;
@@ -367,7 +362,6 @@
367
362
  /* Horizontal Segment */
368
363
  .ui.horizontal.segments > .segment {
369
364
  -webkit-box-flex: 1;
370
- -webkit-flex: 1 1 auto;
371
365
  flex: 1 1 auto;
372
366
  -ms-flex: 1 1 0px;
373
367
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.6 - Step
2
+ * # Semantic UI 2.2.7 - Step
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -15,16 +15,13 @@
15
15
 
16
16
  .ui.steps {
17
17
  display: -webkit-inline-box;
18
- display: -webkit-inline-flex;
19
18
  display: -ms-inline-flexbox;
20
19
  display: inline-flex;
21
20
  -webkit-box-orient: horizontal;
22
21
  -webkit-box-direction: normal;
23
- -webkit-flex-direction: row;
24
22
  -ms-flex-direction: row;
25
23
  flex-direction: row;
26
24
  -webkit-box-align: stretch;
27
- -webkit-align-items: stretch;
28
25
  -ms-flex-align: stretch;
29
26
  align-items: stretch;
30
27
  margin: 1em 0em;
@@ -53,28 +50,22 @@
53
50
  .ui.steps .step {
54
51
  position: relative;
55
52
  display: -webkit-box;
56
- display: -webkit-flex;
57
53
  display: -ms-flexbox;
58
54
  display: flex;
59
55
  -webkit-box-flex: 1;
60
- -webkit-flex: 1 0 auto;
61
56
  -ms-flex: 1 0 auto;
62
57
  flex: 1 0 auto;
63
- -webkit-flex-wrap: wrap;
64
- -ms-flex-wrap: wrap;
65
- flex-wrap: wrap;
58
+ -ms-flex-wrap: wrap;
59
+ flex-wrap: wrap;
66
60
  -webkit-box-orient: horizontal;
67
61
  -webkit-box-direction: normal;
68
- -webkit-flex-direction: row;
69
62
  -ms-flex-direction: row;
70
63
  flex-direction: row;
71
64
  vertical-align: middle;
72
65
  -webkit-box-align: center;
73
- -webkit-align-items: center;
74
66
  -ms-flex-align: center;
75
67
  align-items: center;
76
68
  -webkit-box-pack: center;
77
- -webkit-justify-content: center;
78
69
  -ms-flex-pack: center;
79
70
  justify-content: center;
80
71
  margin: 0em 0em;
@@ -169,16 +160,14 @@
169
160
  .ui.steps .step > .icon ~ .content {
170
161
  display: block;
171
162
  -webkit-box-flex: 0;
172
- -webkit-flex: 0 1 auto;
173
163
  -ms-flex: 0 1 auto;
174
164
  flex: 0 1 auto;
175
- -webkit-align-self: middle;
176
- -ms-flex-item-align: middle;
177
- align-self: middle;
165
+ -ms-flex-item-align: middle;
166
+ -ms-grid-row-align: middle;
167
+ align-self: middle;
178
168
  }
179
169
  .ui.steps .step > .icon ~ .content {
180
170
  -webkit-box-flex: 1 0 auto;
181
- -webkit-flex-grow: 1 0 auto;
182
171
  -ms-flex-positive: 1 0 auto;
183
172
  flex-grow: 1 0 auto;
184
173
  }
@@ -212,9 +201,9 @@
212
201
  position: static;
213
202
  text-align: center;
214
203
  content: counters(ordered, ".");
215
- -webkit-align-self: middle;
216
- -ms-flex-item-align: middle;
217
- align-self: middle;
204
+ -ms-flex-item-align: middle;
205
+ -ms-grid-row-align: middle;
206
+ align-self: middle;
218
207
  margin-right: 1rem;
219
208
  font-size: 2.5em;
220
209
  counter-increment: ordered;
@@ -223,9 +212,9 @@
223
212
  }
224
213
  .ui.ordered.steps .step > * {
225
214
  display: block;
226
- -webkit-align-self: middle;
227
- -ms-flex-item-align: middle;
228
- align-self: middle;
215
+ -ms-flex-item-align: middle;
216
+ -ms-grid-row-align: middle;
217
+ align-self: middle;
229
218
  }
230
219
 
231
220
  /*--------------
@@ -234,19 +223,16 @@
234
223
 
235
224
  .ui.vertical.steps {
236
225
  display: -webkit-inline-box;
237
- display: -webkit-inline-flex;
238
226
  display: -ms-inline-flexbox;
239
227
  display: inline-flex;
240
228
  -webkit-box-orient: vertical;
241
229
  -webkit-box-direction: normal;
242
- -webkit-flex-direction: column;
243
230
  -ms-flex-direction: column;
244
231
  flex-direction: column;
245
232
  overflow: visible;
246
233
  }
247
234
  .ui.vertical.steps .step {
248
235
  -webkit-box-pack: start;
249
- -webkit-justify-content: flex-start;
250
236
  -ms-flex-pack: start;
251
237
  justify-content: flex-start;
252
238
  border-radius: 0em;
@@ -297,13 +283,11 @@
297
283
  @media only screen and (max-width: 767px) {
298
284
  .ui.steps {
299
285
  display: -webkit-inline-box;
300
- display: -webkit-inline-flex;
301
286
  display: -ms-inline-flexbox;
302
287
  display: inline-flex;
303
288
  overflow: visible;
304
289
  -webkit-box-orient: vertical;
305
290
  -webkit-box-direction: normal;
306
- -webkit-flex-direction: column;
307
291
  -ms-flex-direction: column;
308
292
  flex-direction: column;
309
293
  }
@@ -311,7 +295,6 @@
311
295
  width: 100% !important;
312
296
  -webkit-box-orient: vertical;
313
297
  -webkit-box-direction: normal;
314
- -webkit-flex-direction: column;
315
298
  -ms-flex-direction: column;
316
299
  flex-direction: column;
317
300
  border-radius: 0em;
@@ -442,13 +425,11 @@
442
425
  @media only screen and (max-width: 991px) {
443
426
  .ui[class*="tablet stackable"].steps {
444
427
  display: -webkit-inline-box;
445
- display: -webkit-inline-flex;
446
428
  display: -ms-inline-flexbox;
447
429
  display: inline-flex;
448
430
  overflow: visible;
449
431
  -webkit-box-orient: vertical;
450
432
  -webkit-box-direction: normal;
451
- -webkit-flex-direction: column;
452
433
  -ms-flex-direction: column;
453
434
  flex-direction: column;
454
435
  }
@@ -457,7 +438,6 @@
457
438
  .ui[class*="tablet stackable"].steps .step {
458
439
  -webkit-box-orient: vertical;
459
440
  -webkit-box-direction: normal;
460
- -webkit-flex-direction: column;
461
441
  -ms-flex-direction: column;
462
442
  flex-direction: column;
463
443
  border-radius: 0em;
@@ -496,7 +476,6 @@
496
476
  /* Fluid */
497
477
  .ui.fluid.steps {
498
478
  display: -webkit-box;
499
- display: -webkit-flex;
500
479
  display: -ms-flexbox;
501
480
  display: flex;
502
481
  width: 100%;
@@ -555,9 +534,8 @@
555
534
  .ui.six.steps > .step,
556
535
  .ui.seven.steps > .step,
557
536
  .ui.eight.steps > .step {
558
- -webkit-flex-wrap: nowrap;
559
- -ms-flex-wrap: nowrap;
560
- flex-wrap: nowrap;
537
+ -ms-flex-wrap: nowrap;
538
+ flex-wrap: nowrap;
561
539
  }
562
540
  .ui.one.steps > .step {
563
541
  width: 100%;