semantic-ui-sass 2.2.10.1 → 2.2.11.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 (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/semantic-ui/dropdown.js +108 -50
  3. data/app/assets/javascripts/semantic-ui/form.js +119 -19
  4. data/app/assets/javascripts/semantic-ui/modal.js +41 -16
  5. data/app/assets/javascripts/semantic-ui/popup.js +42 -31
  6. data/app/assets/javascripts/semantic-ui/search.js +11 -2
  7. data/app/assets/javascripts/semantic-ui/sidebar.js +1 -4
  8. data/app/assets/javascripts/semantic-ui/sticky.js +22 -5
  9. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  10. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +46 -59
  11. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +23 -52
  12. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +18 -26
  13. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +6 -6
  14. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +2 -2
  15. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -14
  16. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
  17. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  18. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  19. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
  20. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +25 -1
  21. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  22. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +4 -10
  23. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
  24. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +1 -1
  25. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
  26. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  27. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  28. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +14 -20
  29. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +22 -44
  30. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +254 -199
  31. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +44 -1
  32. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  33. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -1
  34. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +19 -3
  35. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +70 -39
  36. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
  37. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +96 -22
  38. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
  39. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
  40. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -3
  42. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  43. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  44. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -9
  45. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
  46. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  48. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  49. data/app/assets/stylesheets/semantic-ui/views/_card.scss +3 -12
  50. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +7 -11
  52. data/app/assets/stylesheets/semantic-ui/views/_item.scss +17 -23
  53. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +3 -19
  54. data/lib/semantic/ui/sass/version.rb +2 -2
  55. data/spec/helpers/semantic_icon_helper_spec.rb +9 -9
  56. metadata +2 -2
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Grid
2
+ * # Semantic UI 2.2.11 - Grid
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -15,19 +15,15 @@
15
15
 
16
16
  .ui.grid {
17
17
  display: -webkit-box;
18
- display: -webkit-flex;
19
18
  display: -ms-flexbox;
20
19
  display: 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
- -webkit-flex-wrap: wrap;
27
- -ms-flex-wrap: wrap;
28
- flex-wrap: wrap;
24
+ -ms-flex-wrap: wrap;
25
+ flex-wrap: wrap;
29
26
  -webkit-box-align: stretch;
30
- -webkit-align-items: stretch;
31
27
  -ms-flex-align: stretch;
32
28
  align-items: stretch;
33
29
  padding: 0em;
@@ -84,23 +80,18 @@
84
80
  .ui.grid > .row {
85
81
  position: relative;
86
82
  display: -webkit-box;
87
- display: -webkit-flex;
88
83
  display: -ms-flexbox;
89
84
  display: flex;
90
85
  -webkit-box-orient: horizontal;
91
86
  -webkit-box-direction: normal;
92
- -webkit-flex-direction: row;
93
87
  -ms-flex-direction: row;
94
88
  flex-direction: row;
95
- -webkit-flex-wrap: wrap;
96
- -ms-flex-wrap: wrap;
97
- flex-wrap: wrap;
89
+ -ms-flex-wrap: wrap;
90
+ flex-wrap: wrap;
98
91
  -webkit-box-pack: inherit;
99
- -webkit-justify-content: inherit;
100
92
  -ms-flex-pack: inherit;
101
93
  justify-content: inherit;
102
94
  -webkit-box-align: stretch;
103
- -webkit-align-items: stretch;
104
95
  -ms-flex-align: stretch;
105
96
  align-items: stretch;
106
97
  width: 100% !important;
@@ -155,7 +146,6 @@
155
146
  /* Align Dividers with Gutter */
156
147
  .ui.grid .row + .ui.divider {
157
148
  -webkit-box-flex: 1;
158
- -webkit-flex-grow: 1;
159
149
  -ms-flex-positive: 1;
160
150
  flex-grow: 1;
161
151
  margin: 1rem 1rem;
@@ -975,7 +965,6 @@
975
965
  .ui.grid > .centered.row {
976
966
  text-align: center;
977
967
  -webkit-box-pack: center;
978
- -webkit-justify-content: center;
979
968
  -ms-flex-pack: center;
980
969
  justify-content: center;
981
970
  }
@@ -1200,13 +1189,11 @@
1200
1189
  .ui.grid > .row > [class*="top aligned"].column {
1201
1190
  -webkit-box-orient: vertical;
1202
1191
  -webkit-box-direction: normal;
1203
- -webkit-flex-direction: column;
1204
1192
  -ms-flex-direction: column;
1205
1193
  flex-direction: column;
1206
1194
  vertical-align: top;
1207
- -webkit-align-self: flex-start !important;
1208
- -ms-flex-item-align: start !important;
1209
- align-self: flex-start !important;
1195
+ -ms-flex-item-align: start !important;
1196
+ align-self: flex-start !important;
1210
1197
  }
1211
1198
 
1212
1199
  /* Middle Aligned */
@@ -1217,13 +1204,12 @@
1217
1204
  .ui.grid > .row > [class*="middle aligned"].column {
1218
1205
  -webkit-box-orient: vertical;
1219
1206
  -webkit-box-direction: normal;
1220
- -webkit-flex-direction: column;
1221
1207
  -ms-flex-direction: column;
1222
1208
  flex-direction: column;
1223
1209
  vertical-align: middle;
1224
- -webkit-align-self: center !important;
1225
- -ms-flex-item-align: center !important;
1226
- align-self: center !important;
1210
+ -ms-flex-item-align: center !important;
1211
+ -ms-grid-row-align: center !important;
1212
+ align-self: center !important;
1227
1213
  }
1228
1214
 
1229
1215
  /* Bottom Aligned */
@@ -1234,13 +1220,11 @@
1234
1220
  .ui.grid > .row > [class*="bottom aligned"].column {
1235
1221
  -webkit-box-orient: vertical;
1236
1222
  -webkit-box-direction: normal;
1237
- -webkit-flex-direction: column;
1238
1223
  -ms-flex-direction: column;
1239
1224
  flex-direction: column;
1240
1225
  vertical-align: bottom;
1241
- -webkit-align-self: flex-end !important;
1242
- -ms-flex-item-align: end !important;
1243
- align-self: flex-end !important;
1226
+ -ms-flex-item-align: end !important;
1227
+ align-self: flex-end !important;
1244
1228
  }
1245
1229
 
1246
1230
  /* Stretched */
@@ -1250,15 +1234,12 @@
1250
1234
  .ui.grid > .stretched.column:not(.row),
1251
1235
  .ui.grid > .row > .stretched.column {
1252
1236
  display: -webkit-inline-box !important;
1253
- display: -webkit-inline-flex !important;
1254
1237
  display: -ms-inline-flexbox !important;
1255
1238
  display: inline-flex !important;
1256
- -webkit-align-self: stretch;
1257
- -ms-flex-item-align: stretch;
1258
- align-self: stretch;
1239
+ -ms-flex-item-align: stretch;
1240
+ align-self: stretch;
1259
1241
  -webkit-box-orient: vertical;
1260
1242
  -webkit-box-direction: normal;
1261
- -webkit-flex-direction: column;
1262
1243
  -ms-flex-direction: column;
1263
1244
  flex-direction: column;
1264
1245
  }
@@ -1268,7 +1249,6 @@
1268
1249
  .ui.grid > .stretched.column:not(.row) > *,
1269
1250
  .ui.grid > .row > .stretched.column > * {
1270
1251
  -webkit-box-flex: 1;
1271
- -webkit-flex-grow: 1;
1272
1252
  -ms-flex-positive: 1;
1273
1253
  flex-grow: 1;
1274
1254
  }
@@ -1285,9 +1265,9 @@
1285
1265
  .ui.grid > [class*="left aligned"].column.column,
1286
1266
  .ui.grid > .row > [class*="left aligned"].column.column {
1287
1267
  text-align: left;
1288
- -webkit-align-self: inherit;
1289
- -ms-flex-item-align: inherit;
1290
- align-self: inherit;
1268
+ -ms-flex-item-align: inherit;
1269
+ -ms-grid-row-align: inherit;
1270
+ align-self: inherit;
1291
1271
  }
1292
1272
 
1293
1273
  /* Center Aligned */
@@ -1297,13 +1277,12 @@
1297
1277
  .ui.grid > [class*="center aligned"].column.column,
1298
1278
  .ui.grid > .row > [class*="center aligned"].column.column {
1299
1279
  text-align: center;
1300
- -webkit-align-self: inherit;
1301
- -ms-flex-item-align: inherit;
1302
- align-self: inherit;
1280
+ -ms-flex-item-align: inherit;
1281
+ -ms-grid-row-align: inherit;
1282
+ align-self: inherit;
1303
1283
  }
1304
1284
  .ui[class*="center aligned"].grid {
1305
1285
  -webkit-box-pack: center;
1306
- -webkit-justify-content: center;
1307
1286
  -ms-flex-pack: center;
1308
1287
  justify-content: center;
1309
1288
  }
@@ -1315,9 +1294,9 @@
1315
1294
  .ui.grid > [class*="right aligned"].column.column,
1316
1295
  .ui.grid > .row > [class*="right aligned"].column.column {
1317
1296
  text-align: right;
1318
- -webkit-align-self: inherit;
1319
- -ms-flex-item-align: inherit;
1320
- align-self: inherit;
1297
+ -ms-flex-item-align: inherit;
1298
+ -ms-grid-row-align: inherit;
1299
+ align-self: inherit;
1321
1300
  }
1322
1301
 
1323
1302
  /* Justified */
@@ -1468,7 +1447,6 @@
1468
1447
  .ui.grid > [class*="equal width"].row > .column {
1469
1448
  display: inline-block;
1470
1449
  -webkit-box-flex: 1;
1471
- -webkit-flex-grow: 1;
1472
1450
  -ms-flex-positive: 1;
1473
1451
  flex-grow: 1;
1474
1452
  }
@@ -1476,7 +1454,6 @@
1476
1454
  .ui[class*="equal width"].grid > .row > .wide.column,
1477
1455
  .ui.grid > [class*="equal width"].row > .wide.column {
1478
1456
  -webkit-box-flex: 0;
1479
- -webkit-flex-grow: 0;
1480
1457
  -ms-flex-positive: 0;
1481
1458
  flex-grow: 0;
1482
1459
  }
@@ -1493,7 +1470,6 @@
1493
1470
  .ui.grid > [class*="mobile reversed"].row {
1494
1471
  -webkit-box-orient: horizontal;
1495
1472
  -webkit-box-direction: reverse;
1496
- -webkit-flex-direction: row-reverse;
1497
1473
  -ms-flex-direction: row-reverse;
1498
1474
  flex-direction: row-reverse;
1499
1475
  }
@@ -1501,7 +1477,6 @@
1501
1477
  .ui.stackable[class*="mobile reversed"] {
1502
1478
  -webkit-box-orient: vertical;
1503
1479
  -webkit-box-direction: reverse;
1504
- -webkit-flex-direction: column-reverse;
1505
1480
  -ms-flex-direction: column-reverse;
1506
1481
  flex-direction: column-reverse;
1507
1482
  }
@@ -1540,14 +1515,12 @@
1540
1515
  .ui.grid > [class*="tablet reversed"].row {
1541
1516
  -webkit-box-orient: horizontal;
1542
1517
  -webkit-box-direction: reverse;
1543
- -webkit-flex-direction: row-reverse;
1544
1518
  -ms-flex-direction: row-reverse;
1545
1519
  flex-direction: row-reverse;
1546
1520
  }
1547
1521
  .ui[class*="tablet vertically reversed"].grid {
1548
1522
  -webkit-box-orient: vertical;
1549
1523
  -webkit-box-direction: reverse;
1550
- -webkit-flex-direction: column-reverse;
1551
1524
  -ms-flex-direction: column-reverse;
1552
1525
  flex-direction: column-reverse;
1553
1526
  }
@@ -1586,14 +1559,12 @@
1586
1559
  .ui.grid > [class*="computer reversed"].row {
1587
1560
  -webkit-box-orient: horizontal;
1588
1561
  -webkit-box-direction: reverse;
1589
- -webkit-flex-direction: row-reverse;
1590
1562
  -ms-flex-direction: row-reverse;
1591
1563
  flex-direction: row-reverse;
1592
1564
  }
1593
1565
  .ui[class*="computer vertically reversed"].grid {
1594
1566
  -webkit-box-orient: vertical;
1595
1567
  -webkit-box-direction: reverse;
1596
- -webkit-flex-direction: column-reverse;
1597
1568
  -ms-flex-direction: column-reverse;
1598
1569
  flex-direction: column-reverse;
1599
1570
  }
@@ -21,7 +21,6 @@
21
21
 
22
22
  .ui.menu {
23
23
  display: -webkit-box;
24
- display: -webkit-flex;
25
24
  display: -ms-flexbox;
26
25
  display: flex;
27
26
  margin: 1rem 0em;
@@ -56,7 +55,6 @@
56
55
  }
57
56
  .ui.menu:not(.vertical) > .menu {
58
57
  display: -webkit-box;
59
- display: -webkit-flex;
60
58
  display: -ms-flexbox;
61
59
  display: flex;
62
60
  }
@@ -67,11 +65,9 @@
67
65
 
68
66
  .ui.menu:not(.vertical) .item {
69
67
  display: -webkit-box;
70
- display: -webkit-flex;
71
68
  display: -ms-flexbox;
72
69
  display: flex;
73
70
  -webkit-box-align: center;
74
- -webkit-align-items: center;
75
71
  -ms-flex-align: center;
76
72
  align-items: center;
77
73
  }
@@ -82,7 +78,6 @@
82
78
  text-decoration: none;
83
79
  -webkit-tap-highlight-color: transparent;
84
80
  -webkit-box-flex: 0;
85
- -webkit-flex: 0 0 auto;
86
81
  -ms-flex: 0 0 auto;
87
82
  flex: 0 0 auto;
88
83
  -webkit-user-select: none;
@@ -162,16 +157,13 @@
162
157
  .ui.menu > .grid,
163
158
  .ui.menu > .container {
164
159
  display: -webkit-box;
165
- display: -webkit-flex;
166
160
  display: -ms-flexbox;
167
161
  display: flex;
168
162
  -webkit-box-align: inherit;
169
- -webkit-align-items: inherit;
170
163
  -ms-flex-align: inherit;
171
164
  align-items: inherit;
172
165
  -webkit-box-orient: vertical;
173
166
  -webkit-box-direction: normal;
174
- -webkit-flex-direction: inherit;
175
167
  -ms-flex-direction: inherit;
176
168
  flex-direction: inherit;
177
169
  }
@@ -233,7 +225,6 @@
233
225
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
234
226
  -webkit-box-orient: vertical !important;
235
227
  -webkit-box-direction: normal !important;
236
- -webkit-flex-direction: column !important;
237
228
  -ms-flex-direction: column !important;
238
229
  flex-direction: column !important;
239
230
  }
@@ -479,7 +470,6 @@ Floated Menu / Item
479
470
  .ui.menu:not(.vertical) .left.item,
480
471
  .ui.menu:not(.vertical) .left.menu {
481
472
  display: -webkit-box;
482
- display: -webkit-flex;
483
473
  display: -ms-flexbox;
484
474
  display: flex;
485
475
  margin-right: auto !important;
@@ -489,7 +479,6 @@ Floated Menu / Item
489
479
  .ui.menu:not(.vertical) .right.item,
490
480
  .ui.menu:not(.vertical) .right.menu {
491
481
  display: -webkit-box;
492
- display: -webkit-flex;
493
482
  display: -ms-flexbox;
494
483
  display: flex;
495
484
  margin-left: auto !important;
@@ -510,7 +499,6 @@ Floated Menu / Item
510
499
  display: block;
511
500
  -webkit-box-orient: vertical;
512
501
  -webkit-box-direction: normal;
513
- -webkit-flex-direction: column;
514
502
  -ms-flex-direction: column;
515
503
  flex-direction: column;
516
504
  background: #FFFFFF;
@@ -755,7 +743,6 @@ Floated Menu / Item
755
743
  .ui.pagination.menu {
756
744
  margin: 0em;
757
745
  display: -webkit-inline-box;
758
- display: -webkit-inline-flex;
759
746
  display: -ms-inline-flexbox;
760
747
  display: inline-flex;
761
748
  vertical-align: middle;
@@ -801,9 +788,9 @@ Floated Menu / Item
801
788
 
802
789
  /* Item */
803
790
  .ui.secondary.menu .item {
804
- -webkit-align-self: center;
805
- -ms-flex-item-align: center;
806
- align-self: center;
791
+ -ms-flex-item-align: center;
792
+ -ms-grid-row-align: center;
793
+ align-self: center;
807
794
  box-shadow: none;
808
795
  border: none;
809
796
  padding: 0.78571429em 0.92857143em;
@@ -927,9 +914,8 @@ Floated Menu / Item
927
914
  border-bottom-color: transparent;
928
915
  border-bottom-style: solid;
929
916
  border-radius: 0em;
930
- -webkit-align-self: flex-end;
931
- -ms-flex-item-align: end;
932
- align-self: flex-end;
917
+ -ms-flex-item-align: end;
918
+ align-self: flex-end;
933
919
  margin: 0em 0em -2px;
934
920
  padding: 0.85714286em 1.14285714em;
935
921
  border-bottom-width: 2px;
@@ -1046,9 +1032,9 @@ Floated Menu / Item
1046
1032
  .ui.text.menu .item {
1047
1033
  border-radius: 0px;
1048
1034
  box-shadow: none;
1049
- -webkit-align-self: center;
1050
- -ms-flex-item-align: center;
1051
- align-self: center;
1035
+ -ms-flex-item-align: center;
1036
+ -ms-grid-row-align: center;
1037
+ align-self: center;
1052
1038
  margin: 0em 0em;
1053
1039
  padding: 0.35714286em 0.5em;
1054
1040
  font-weight: normal;
@@ -1225,7 +1211,6 @@ Floated Menu / Item
1225
1211
  min-width: 6em;
1226
1212
  -webkit-box-orient: vertical;
1227
1213
  -webkit-box-direction: normal;
1228
- -webkit-flex-direction: column;
1229
1214
  -ms-flex-direction: column;
1230
1215
  flex-direction: column;
1231
1216
  }
@@ -1257,7 +1242,6 @@ Floated Menu / Item
1257
1242
  .ui.stackable.menu {
1258
1243
  -webkit-box-orient: vertical;
1259
1244
  -webkit-box-direction: normal;
1260
- -webkit-flex-direction: column;
1261
1245
  -ms-flex-direction: column;
1262
1246
  flex-direction: column;
1263
1247
  }
@@ -1282,6 +1266,13 @@ Floated Menu / Item
1282
1266
  .ui.stackable.menu .right.item {
1283
1267
  margin-left: 0 !important;
1284
1268
  }
1269
+ .ui.stackable.menu .right.menu,
1270
+ .ui.stackable.menu .left.menu {
1271
+ -webkit-box-orient: vertical;
1272
+ -webkit-box-direction: normal;
1273
+ -ms-flex-direction: column;
1274
+ flex-direction: column;
1275
+ }
1285
1276
  }
1286
1277
 
1287
1278
  /*--------------
@@ -1653,7 +1644,6 @@ Floated Menu / Item
1653
1644
 
1654
1645
  .ui.compact.menu {
1655
1646
  display: -webkit-inline-box;
1656
- display: -webkit-inline-flex;
1657
1647
  display: -ms-inline-flexbox;
1658
1648
  display: inline-flex;
1659
1649
  margin: 0em;
@@ -1697,10 +1687,12 @@ Floated Menu / Item
1697
1687
  margin-right: 0em !important;
1698
1688
  text-align: center;
1699
1689
  -webkit-box-pack: center;
1700
- -webkit-justify-content: center;
1701
1690
  -ms-flex-pack: center;
1702
1691
  justify-content: center;
1703
1692
  }
1693
+ .ui.attached.item.menu {
1694
+ margin: 0em -1px !important;
1695
+ }
1704
1696
  .ui.item.menu .item:last-child:before {
1705
1697
  display: none;
1706
1698
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Message
2
+ * # Semantic UI 2.2.11 - 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
  }
@@ -175,6 +174,11 @@
175
174
  .ui.compact.message {
176
175
  display: inline-block;
177
176
  }
177
+ .ui.compact.icon.message {
178
+ display: -webkit-inline-box;
179
+ display: -ms-inline-flexbox;
180
+ display: inline-flex;
181
+ }
178
182
 
179
183
  /*--------------
180
184
  Attached
@@ -209,19 +213,16 @@
209
213
 
210
214
  .ui.icon.message {
211
215
  display: -webkit-box;
212
- display: -webkit-flex;
213
216
  display: -ms-flexbox;
214
217
  display: flex;
215
218
  width: 100%;
216
219
  -webkit-box-align: center;
217
- -webkit-align-items: center;
218
220
  -ms-flex-align: center;
219
221
  align-items: center;
220
222
  }
221
223
  .ui.icon.message > .icon:not(.close) {
222
224
  display: block;
223
225
  -webkit-box-flex: 0;
224
- -webkit-flex: 0 0 auto;
225
226
  -ms-flex: 0 0 auto;
226
227
  flex: 0 0 auto;
227
228
  width: auto;
@@ -233,7 +234,6 @@
233
234
  .ui.icon.message > .content {
234
235
  display: block;
235
236
  -webkit-box-flex: 1;
236
- -webkit-flex: 1 1 auto;
237
237
  -ms-flex: 1 1 auto;
238
238
  flex: 1 1 auto;
239
239
  vertical-align: middle;