fomantic-ui-sass 2.8.6 → 2.8.8

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 (83) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/README.md +6 -0
  4. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/brand-icons.svg +6 -41
  6. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  7. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  8. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  9. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  10. data/app/assets/fonts/semantic-ui/icons.svg +7 -245
  11. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  14. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  15. data/app/assets/fonts/semantic-ui/outline-icons.svg +2 -2
  16. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  17. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  18. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  19. data/app/assets/javascripts/semantic-ui/calendar.js +153 -29
  20. data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
  21. data/app/assets/javascripts/semantic-ui/dimmer.js +11 -14
  22. data/app/assets/javascripts/semantic-ui/dropdown.js +240 -112
  23. data/app/assets/javascripts/semantic-ui/form.js +131 -67
  24. data/app/assets/javascripts/semantic-ui/modal.js +259 -16
  25. data/app/assets/javascripts/semantic-ui/nag.js +130 -64
  26. data/app/assets/javascripts/semantic-ui/popup.js +4 -4
  27. data/app/assets/javascripts/semantic-ui/progress.js +25 -31
  28. data/app/assets/javascripts/semantic-ui/search.js +15 -12
  29. data/app/assets/javascripts/semantic-ui/slider.js +57 -33
  30. data/app/assets/javascripts/semantic-ui/toast.js +26 -6
  31. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  32. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +69 -74
  33. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +14 -7
  34. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +14 -11
  35. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +52 -5
  36. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +9 -5
  37. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
  38. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +29 -2
  39. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +3 -4
  40. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  42. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +14 -9
  43. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +244 -66
  44. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +34 -5
  45. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +34 -33
  46. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +13 -13
  48. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +41 -37
  49. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +1 -1
  50. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  52. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +40 -2
  53. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +10 -10
  54. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +13 -1
  55. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +2 -3
  56. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +2 -2
  57. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  58. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +18 -11
  59. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +46 -4
  60. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +15 -15
  61. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +180 -28
  62. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +7 -7
  63. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +22 -11
  64. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +168 -16
  65. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +6 -2
  66. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +18 -10
  67. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +18 -33
  68. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  69. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  70. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +3 -2
  71. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +11 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -2
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  74. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +103 -16
  75. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  77. data/app/assets/stylesheets/semantic-ui/views/_card.scss +75 -3
  78. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  79. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +6 -6
  80. data/app/assets/stylesheets/semantic-ui/views/_item.scss +1 -1
  81. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +5 -5
  82. data/lib/fomantic/ui/sass/version.rb +2 -2
  83. metadata +3 -3
@@ -226,10 +226,12 @@
226
226
  margin: 0 0 0;
227
227
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
228
228
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
229
- -webkit-box-orient: vertical !important;
230
- -webkit-box-direction: normal !important;
231
- -ms-flex-direction: column !important;
232
- flex-direction: column !important;
229
+ }
230
+ .ui.menu .dropdown.item:not(.column) .menu {
231
+ -webkit-box-orient: vertical;
232
+ -webkit-box-direction: normal;
233
+ -ms-flex-direction: column;
234
+ flex-direction: column;
233
235
  }
234
236
 
235
237
  /* Menu Items */
@@ -263,7 +265,8 @@
263
265
  .ui.menu .ui.dropdown.item .menu .item:not(.filtered) {
264
266
  display: block;
265
267
  }
266
- .ui.menu .ui.dropdown .menu > .item .icon:not(.dropdown) {
268
+ .ui.menu .ui.dropdown .menu > .item > .icons,
269
+ .ui.menu .ui.dropdown .menu > .item > i.icon:not(.dropdown) {
267
270
  display: inline-block;
268
271
  font-size: 1em !important;
269
272
  float: none;
@@ -289,7 +292,7 @@
289
292
  }
290
293
 
291
294
  /* Vertical */
292
- .ui.vertical.menu .dropdown.item > .icon {
295
+ .ui.vertical.menu .dropdown.item > i.icon {
293
296
  float: right;
294
297
  content: "\f0da";
295
298
  margin-left: 1em;
@@ -1244,24 +1247,24 @@ Floated Menu / Item
1244
1247
  }
1245
1248
 
1246
1249
  /* Icon */
1247
- .ui.icon.menu .item > .icon:not(.dropdown) {
1250
+ .ui.icon.menu .item > i.icon:not(.dropdown) {
1248
1251
  margin: 0;
1249
1252
  opacity: 1;
1250
1253
  }
1251
1254
 
1252
1255
  /* Icon Gylph */
1253
- .ui.icon.menu .icon:before {
1256
+ .ui.icon.menu i.icon:before {
1254
1257
  opacity: 1;
1255
1258
  }
1256
1259
 
1257
1260
  /* (x) Item Icon */
1258
- .ui.menu .icon.item > .icon {
1261
+ .ui.menu .icon.item > i.icon {
1259
1262
  width: auto;
1260
1263
  margin: 0 auto;
1261
1264
  }
1262
1265
 
1263
1266
  /* Vertical Icon */
1264
- .ui.vertical.icon.menu .item > .icon:not(.dropdown) {
1267
+ .ui.vertical.icon.menu .item > i.icon:not(.dropdown) {
1265
1268
  display: block;
1266
1269
  opacity: 1;
1267
1270
  margin: 0 auto;
@@ -1293,7 +1296,7 @@ Floated Menu / Item
1293
1296
  }
1294
1297
 
1295
1298
  /* Icon */
1296
- .ui.labeled.icon.menu > .item > .icon:not(.dropdown) {
1299
+ .ui.labeled.icon.menu > .item > i.icon:not(.dropdown) {
1297
1300
  height: 1em;
1298
1301
  display: block;
1299
1302
  font-size: 1.71428571em !important;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Message
2
+ * # Fomantic-UI 2.8.8 - Message
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -101,9 +101,14 @@
101
101
  }
102
102
 
103
103
  /* Icon */
104
- .ui.message > .icon {
104
+ .ui.icon.message > .icons,
105
+ .ui.icon.message > i.icon {
105
106
  margin-right: 0.6em;
106
107
  }
108
+ .ui.icon.message > .icons:last-child,
109
+ .ui.icon.message > i.icon:last-child {
110
+ margin: 0 0 0 0.6em;
111
+ }
107
112
 
108
113
  /* Close Icon */
109
114
  .ui.message > .close.icon {
@@ -169,6 +174,22 @@
169
174
  Variations
170
175
  *******************************/
171
176
 
177
+ .ui.centered.message,
178
+ .ui.center.aligned.message {
179
+ text-align: center;
180
+ -webkit-box-pack: center;
181
+ -ms-flex-pack: center;
182
+ justify-content: center;
183
+ }
184
+ .ui.centered.message > .content,
185
+ .ui.center.aligned.message > .content {
186
+ -webkit-box-flex: 0;
187
+ -ms-flex: 0 0 auto;
188
+ flex: 0 0 auto;
189
+ }
190
+ .ui.right.aligned.message {
191
+ text-align: right;
192
+ }
172
193
 
173
194
  /*--------------
174
195
  Compact
@@ -226,7 +247,8 @@
226
247
  -ms-flex-align: center;
227
248
  align-items: center;
228
249
  }
229
- .ui.icon.message > .icon:not(.close) {
250
+ .ui.icon.message > .icons,
251
+ .ui.icon.message > i.icon:not(.close) {
230
252
  display: block;
231
253
  -webkit-box-flex: 0;
232
254
  -ms-flex: 0 0 auto;
@@ -244,10 +266,11 @@
244
266
  flex: 1 1 auto;
245
267
  vertical-align: middle;
246
268
  }
247
- .ui.icon.message .icon:not(.close) + .content {
269
+ .ui.icon.message > .icons + .content,
270
+ .ui.icon.message > i.icon:not(.close) + .content {
248
271
  padding-left: 0;
249
272
  }
250
- .ui.icon.message .circular.icon {
273
+ .ui.icon.message > i.circular {
251
274
  width: 1em;
252
275
  }
253
276
 
@@ -285,6 +308,10 @@
285
308
  .ui.positive.message .header {
286
309
  color: #1A531B;
287
310
  }
311
+ .ui.inverted.positive.message,
312
+ .ui.inverted.positive.message .header {
313
+ color: #A3C293;
314
+ }
288
315
  .ui.negative.message {
289
316
  background-color: #FFF6F6;
290
317
  color: #9F3A38;
@@ -301,6 +328,10 @@
301
328
  .ui.negative.message .header {
302
329
  color: #912D2B;
303
330
  }
331
+ .ui.inverted.negative.message,
332
+ .ui.inverted.negative.message .header {
333
+ color: #E0B4B4;
334
+ }
304
335
  .ui.info.message {
305
336
  background-color: #F8FFFF;
306
337
  color: #276F86;
@@ -317,6 +348,10 @@
317
348
  .ui.info.message .header {
318
349
  color: #0E566C;
319
350
  }
351
+ .ui.inverted.info.message,
352
+ .ui.inverted.info.message .header {
353
+ color: #c6e3e9;
354
+ }
320
355
  .ui.warning.message {
321
356
  background-color: #FFFAF3;
322
357
  color: #573A08;
@@ -333,6 +368,10 @@
333
368
  .ui.warning.message .header {
334
369
  color: #794B02;
335
370
  }
371
+ .ui.inverted.warning.message,
372
+ .ui.inverted.warning.message .header {
373
+ color: #d7ccb5;
374
+ }
336
375
  .ui.error.message {
337
376
  background-color: #FFF6F6;
338
377
  color: #9F3A38;
@@ -349,6 +388,10 @@
349
388
  .ui.error.message .header {
350
389
  color: #912D2B;
351
390
  }
391
+ .ui.inverted.error.message,
392
+ .ui.inverted.error.message .header {
393
+ color: #ecd1d1;
394
+ }
352
395
  .ui.success.message {
353
396
  background-color: #FCFFF5;
354
397
  color: #2C662D;
@@ -365,6 +408,10 @@
365
408
  .ui.success.message .header {
366
409
  color: #1A531B;
367
410
  }
411
+ .ui.inverted.success.message,
412
+ .ui.inverted.success.message .header {
413
+ color: #b9d1ad;
414
+ }
368
415
  .ui.primary.message {
369
416
  background-color: #DFF0FF;
370
417
  color: rgba(255, 255, 255, 0.9);
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Table
2
+ * # Fomantic-UI 2.8.8 - Table
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -104,7 +104,7 @@
104
104
  text-align: inherit;
105
105
  color: rgba(0, 0, 0, 0.87);
106
106
  padding: 0.78571429em 0.78571429em;
107
- vertical-align: middle;
107
+ vertical-align: inherit;
108
108
  font-style: normal;
109
109
  font-weight: normal;
110
110
  text-transform: none;
@@ -149,10 +149,10 @@
149
149
  }
150
150
 
151
151
  /* Icons */
152
- .ui.table > .icon {
152
+ .ui.table > i.icon {
153
153
  vertical-align: baseline;
154
154
  }
155
- .ui.table > .icon:only-child {
155
+ .ui.table > i.icon:only-child {
156
156
  margin: 0;
157
157
  }
158
158
 
@@ -539,6 +539,9 @@
539
539
  box-shadow: -0.1em -0.2em 0 0.1em #FFFFFF;
540
540
  -moz-transform: scale(1);
541
541
  }
542
+ .ui.definition.table > thead:not(.full-width) > tr > th:first-child:not(:empty) {
543
+ pointer-events: auto;
544
+ }
542
545
  .ui.definition.table > tfoot:not(.full-width) > tr > th:first-child {
543
546
  pointer-events: none;
544
547
  background: #FFFFFF;
@@ -1996,7 +1999,8 @@
1996
1999
  .ui.inverted.definition.table > thead:not(.full-width) > tr > th:first-child {
1997
2000
  background: #FFFFFF;
1998
2001
  }
1999
- .ui.inverted.definition.table > tbody > tr > td:first-child .ui.inverted.definition.table > tfoot > tr > td:first-child,
2002
+ .ui.inverted.definition.table > tbody > tr > td:first-child,
2003
+ .ui.inverted.definition.table > tfoot > tr > td:first-child,
2000
2004
  .ui.inverted.definition.table > tr > td:first-child {
2001
2005
  background: rgba(255, 255, 255, 0.02);
2002
2006
  color: #ffffff;
@@ -15,3 +15,4 @@
15
15
  @import 'reveal';
16
16
  @import 'segment';
17
17
  @import 'step';
18
+ @import 'text';
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Button
2
+ * # Fomantic-UI 2.8.8 - Button
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -654,6 +654,33 @@
654
654
  *******************************/
655
655
 
656
656
 
657
+ /*--------------
658
+ Stackable
659
+ ---------------*/
660
+
661
+
662
+ /* Tablet Or Below */
663
+ @media only screen and (max-width: 767.98px) {
664
+ .ui.stackable.buttons {
665
+ -webkit-box-orient: vertical;
666
+ -webkit-box-direction: normal;
667
+ -ms-flex-direction: column;
668
+ flex-direction: column;
669
+ width: 100%;
670
+ }
671
+ .ui.stackable.buttons .button:first-child {
672
+ border-bottom-left-radius: 0;
673
+ border-top-right-radius: 0.28571429rem;
674
+ }
675
+ .ui.stackable.buttons .button:last-child {
676
+ border-bottom-left-radius: 0.28571429rem;
677
+ border-top-right-radius: 0;
678
+ }
679
+ .ui.stackable.buttons .button:only-child {
680
+ border-radius: 0.28571429rem;
681
+ }
682
+ }
683
+
657
684
  /*-------------------
658
685
  Floated
659
686
  --------------------*/
@@ -756,7 +783,7 @@
756
783
  ---------------*/
757
784
 
758
785
  .ui.icon.buttons .button,
759
- .ui.icon.button:not(.animated) {
786
+ .ui.icon.button:not(.animated):not(.compact):not(.labeled) {
760
787
  padding: 0.78571429em 0.78571429em 0.78571429em;
761
788
  }
762
789
  .ui.animated.icon.button > .content > .icon,
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Container
2
+ * # Fomantic-UI 2.8.8 - Container
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -127,9 +127,8 @@
127
127
  }
128
128
  .ui.justified.container {
129
129
  text-align: justify;
130
- -webkit-hyphens: auto;
131
- -ms-hyphens: auto;
132
- hyphens: auto;
130
+ -ms-hyphens: auto;
131
+ hyphens: auto;
133
132
  }
134
133
 
135
134
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Divider
2
+ * # Fomantic-UI 2.8.8 - Divider
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Flag
2
+ * # Fomantic-UI 2.8.8 - Flag
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Header
2
+ * # Fomantic-UI 2.8.8 - Header
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -50,7 +50,8 @@
50
50
  Icon
51
51
  ---------------*/
52
52
 
53
- .ui.header > .icon {
53
+ .ui.header > .icons,
54
+ .ui.header > i.icon {
54
55
  display: table-cell;
55
56
  opacity: 1;
56
57
  font-size: 1.5em;
@@ -59,7 +60,8 @@
59
60
  }
60
61
 
61
62
  /* With Text Node */
62
- .ui.header .icon:only-child {
63
+ .ui.header:not(.icon) > .icons:only-child,
64
+ .ui.header:not(.icon) > i.icon:only-child {
63
65
  display: inline-block;
64
66
  padding: 0;
65
67
  margin-right: 0.75rem;
@@ -99,7 +101,8 @@
99
101
  }
100
102
 
101
103
  /* After Icon */
102
- .ui.header > .icon + .content {
104
+ .ui.header:not(.icon):not(.centered):not(.aligned) > .icons + .content,
105
+ .ui.header:not(.icon):not(.centered):not(.aligned) > i.icon + .content {
103
106
  padding-left: 0.75rem;
104
107
  display: table-cell;
105
108
  vertical-align: middle;
@@ -269,7 +272,8 @@ h6.ui.header .sub.header {
269
272
  .ui.icon.header:first-child {
270
273
  margin-top: 0;
271
274
  }
272
- .ui.icon.header .icon {
275
+ .ui.icon.header > .icons,
276
+ .ui.icon.header > i.icon {
273
277
  float: none;
274
278
  display: block;
275
279
  width: auto;
@@ -287,13 +291,14 @@ h6.ui.header .sub.header {
287
291
  display: block;
288
292
  padding: 0;
289
293
  }
290
- .ui.icon.header .circular.icon {
294
+ .ui.icon.header > i.circular {
291
295
  font-size: 2em;
292
296
  }
293
- .ui.icon.header .square.icon {
297
+ .ui.icon.header > i.square {
294
298
  font-size: 2em;
295
299
  }
296
- .ui.block.icon.header .icon {
300
+ .ui.block.icon.header > .icons,
301
+ .ui.block.icon.header > i.icon {
297
302
  margin-bottom: 0;
298
303
  }
299
304
  .ui.icon.header.aligned {
@@ -675,7 +680,7 @@ a.ui.inverted.black.header.header.header:hover {
675
680
  .ui.dividing.header .sub.header {
676
681
  padding-bottom: 0.21428571rem;
677
682
  }
678
- .ui.dividing.header .icon {
683
+ .ui.dividing.header i.icon {
679
684
  margin-bottom: 0;
680
685
  }
681
686
  .ui.inverted.dividing.header {