semantic-ui-sass 1.7.3.0 → 1.8.0.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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/app/assets/javascripts/semantic-ui/api.js +22 -11
  4. data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
  5. data/app/assets/javascripts/semantic-ui/dropdown.js +204 -105
  6. data/app/assets/javascripts/semantic-ui/form.js +259 -43
  7. data/app/assets/javascripts/semantic-ui/popup.js +4 -3
  8. data/app/assets/javascripts/semantic-ui/search.js +310 -152
  9. data/app/assets/javascripts/semantic-ui/sidebar.js +18 -7
  10. data/app/assets/javascripts/semantic-ui/sticky.js +1 -1
  11. data/app/assets/javascripts/semantic-ui/transition.js +35 -23
  12. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  13. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1 -1
  14. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +31 -1
  15. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +21 -20
  16. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
  17. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1 -1
  18. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +15 -3
  19. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  20. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  21. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +70 -31
  22. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1 -1
  23. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  24. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +1 -1
  25. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +11 -8
  26. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +9 -19
  27. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
  28. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  29. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  30. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
  31. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +1 -1
  32. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  33. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
  34. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +7 -7
  35. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +55 -28
  36. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -1
  37. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -1
  38. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +2 -1
  39. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
  40. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +5 -2
  41. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
  42. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
  43. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  44. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  45. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +2 -1
  46. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  48. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1557 -538
  49. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +1 -1
  50. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -1
  52. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  53. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +1 -1
  54. data/app/assets/stylesheets/semantic-ui/views/_item.scss +1 -1
  55. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +1 -1
  56. data/lib/semantic/ui/sass/version.rb +2 -2
  57. metadata +2 -2
@@ -59,6 +59,7 @@ $.fn.sidebar = function(parameters) {
59
59
  $context = $(settings.context),
60
60
 
61
61
  $sidebars = $module.children(selector.sidebar),
62
+ $fixed = $context.children(selector.fixed),
62
63
  $pusher = $context.children(selector.pusher),
63
64
  $style,
64
65
 
@@ -134,10 +135,18 @@ $.fn.sidebar = function(parameters) {
134
135
 
135
136
  event: {
136
137
  clickaway: function(event) {
137
- if( $(event.target).closest(selector.sidebar).length === 0 ) {
138
+ var
139
+ clickedInPusher = ($pusher.find(event.target).length > 0 || $pusher.is(event.target)),
140
+ clickedContext = ($context.is(event.target))
141
+ ;
142
+ if(clickedInPusher) {
138
143
  module.verbose('User clicked on dimmed page');
139
144
  module.hide();
140
145
  }
146
+ if(clickedContext) {
147
+ module.verbose('User clicked on dimmable context (scaled out page)');
148
+ module.hide();
149
+ }
141
150
  },
142
151
  touch: function(event) {
143
152
  //event.stopPropagation();
@@ -267,7 +276,6 @@ $.fn.sidebar = function(parameters) {
267
276
  + ' }'
268
277
  ;
269
278
  }
270
-
271
279
  style += '</style>';
272
280
  $head.append(style);
273
281
  $style = $('style[title=' + namespace + ']');
@@ -280,6 +288,7 @@ $.fn.sidebar = function(parameters) {
280
288
  $context = $(settings.context);
281
289
  $sidebars = $context.children(selector.sidebar);
282
290
  $pusher = $context.children(selector.pusher);
291
+ $fixed = $context.children(selector.fixed);
283
292
  },
284
293
 
285
294
  refreshSidebars: function() {
@@ -453,7 +462,7 @@ $.fn.sidebar = function(parameters) {
453
462
  if(settings.transition == 'scale down') {
454
463
  module.scrollToTop();
455
464
  }
456
- module.set.transition();
465
+ module.set.transition(transition);
457
466
  module.repaint();
458
467
  animate = function() {
459
468
  module.bind.clickaway();
@@ -496,7 +505,7 @@ $.fn.sidebar = function(parameters) {
496
505
  ;
497
506
  module.verbose('Removing context push state', module.get.direction());
498
507
 
499
- module.set.transition();
508
+ module.set.transition(transition);
500
509
  module.unbind.clickaway();
501
510
  module.unbind.scrollLock();
502
511
 
@@ -686,7 +695,7 @@ $.fn.sidebar = function(parameters) {
686
695
  direction = module.get.direction(),
687
696
  transition
688
697
  ;
689
- return ( module.is.mobile() )
698
+ transition = ( module.is.mobile() )
690
699
  ? (settings.mobileTransition == 'auto')
691
700
  ? settings.defaultTransition.mobile[direction]
692
701
  : settings.mobileTransition
@@ -694,6 +703,8 @@ $.fn.sidebar = function(parameters) {
694
703
  ? settings.defaultTransition.computer[direction]
695
704
  : settings.transition
696
705
  ;
706
+ module.verbose('Determined transition', transition);
707
+ return transition;
697
708
  },
698
709
  transitionEvent: function() {
699
710
  var
@@ -754,7 +765,7 @@ $.fn.sidebar = function(parameters) {
754
765
  ios: function() {
755
766
  var
756
767
  userAgent = navigator.userAgent,
757
- isIOS = regExp.ios.test(userAgent)
768
+ isIOS = userAgent.match(regExp.ios)
758
769
  ;
759
770
  if(isIOS) {
760
771
  module.verbose('Browser was found to be iOS', userAgent);
@@ -767,7 +778,7 @@ $.fn.sidebar = function(parameters) {
767
778
  mobile: function() {
768
779
  var
769
780
  userAgent = navigator.userAgent,
770
- isMobile = regExp.mobile.test(userAgent)
781
+ isMobile = userAgent.match(regExp.mobile)
771
782
  ;
772
783
  if(isMobile) {
773
784
  module.verbose('Browser was found to be mobile', userAgent);
@@ -226,7 +226,7 @@ $.fn.sticky = function(parameters) {
226
226
  }
227
227
  };
228
228
  module.set.containerSize();
229
- module.set.length;
229
+ module.set.size();
230
230
  module.stick();
231
231
  module.debug('Caching element positions', module.cache);
232
232
  }
@@ -135,16 +135,17 @@ $.fn.transition = function() {
135
135
  module.debug('Preparing animation', settings.animation);
136
136
  if(module.is.animating()) {
137
137
  if(settings.queue) {
138
- if(!settings.allowRepeats && module.has.direction() && module.is.occuring() && module.queuing !== true) {
139
- module.error(error.repeated, settings.animation, $module);
138
+ if(!settings.allowRepeats && module.has.direction() && module.is.occurring() && module.queuing !== true) {
139
+ module.debug('Animation is currently occurring, preventing queueing same animation', settings.animation);
140
140
  }
141
141
  else {
142
142
  module.queue(settings.animation);
143
143
  }
144
144
  return false;
145
145
  }
146
- else {
147
-
146
+ else if(!settings.allowRepeats && module.is.occurring()) {
147
+ module.debug('Animation is already occurring, will not execute repeated animation', settings.animation);
148
+ return false;
148
149
  }
149
150
  }
150
151
  if( module.can.animate() ) {
@@ -203,12 +204,19 @@ $.fn.transition = function() {
203
204
 
204
205
  has: {
205
206
  direction: function(animation) {
207
+ var
208
+ hasDirection = false
209
+ ;
206
210
  animation = animation || settings.animation;
207
- if( animation.search(className.inward) !== -1 || animation.search(className.outward) !== -1) {
208
- module.debug('Direction already set in animation');
209
- return true;
211
+ if(typeof animation === 'string') {
212
+ animation = animation.split(' ');
213
+ $.each(animation, function(index, word){
214
+ if(word === className.inward || word === className.outward) {
215
+ hasDirection = true;
216
+ }
217
+ });
210
218
  }
211
- return false;
219
+ return hasDirection;
212
220
  },
213
221
  inlineDisplay: function() {
214
222
  var
@@ -232,8 +240,7 @@ $.fn.transition = function() {
232
240
  module.remove.hidden();
233
241
  module.set.display();
234
242
  $module
235
- .addClass(className.animating)
236
- .addClass(className.transition)
243
+ .addClass(className.animating + ' ' + className.transition + ' ' + animation)
237
244
  .addClass(animation)
238
245
  .one(animationEnd + '.complete' + eventNamespace, module.complete)
239
246
  ;
@@ -251,15 +258,17 @@ $.fn.transition = function() {
251
258
  : duration
252
259
  ;
253
260
  module.verbose('Setting animation duration', duration);
254
- $module
255
- .css({
256
- '-webkit-animation-duration': duration,
257
- '-moz-animation-duration': duration,
258
- '-ms-animation-duration': duration,
259
- '-o-animation-duration': duration,
260
- 'animation-duration': duration
261
- })
262
- ;
261
+ if(duration || duration === 0) {
262
+ $module
263
+ .css({
264
+ '-webkit-animation-duration': duration,
265
+ '-moz-animation-duration': duration,
266
+ '-ms-animation-duration': duration,
267
+ '-o-animation-duration': duration,
268
+ 'animation-duration': duration
269
+ })
270
+ ;
271
+ }
263
272
  },
264
273
  display: function() {
265
274
  var
@@ -472,7 +481,10 @@ $.fn.transition = function() {
472
481
  },
473
482
  duration: function(duration) {
474
483
  duration = duration || settings.duration;
475
- return (typeof settings.duration === 'string')
484
+ if(duration === false) {
485
+ duration = $module.css('animation-duration') || 0;
486
+ }
487
+ return (typeof duration === 'string')
476
488
  ? (duration.indexOf('ms') > -1)
477
489
  ? parseFloat(duration)
478
490
  : parseFloat(duration) * 1000
@@ -632,9 +644,9 @@ $.fn.transition = function() {
632
644
  looping: function() {
633
645
  return $module.hasClass(className.looping);
634
646
  },
635
- occuring: function(animation) {
647
+ occurring: function(animation) {
636
648
  animation = animation || settings.animation;
637
- animation = animation.replace(' ', '.');
649
+ animation = '.' + animation.replace(' ', '.');
638
650
  return ( $module.filter(animation).length > 0 );
639
651
  },
640
652
  visible: function() {
@@ -889,7 +901,7 @@ $.fn.transition.settings = {
889
901
 
890
902
  // animation duration
891
903
  animation : 'fade',
892
- duration : '500ms',
904
+ duration : false,
893
905
 
894
906
  // new animations will occur after previous ones
895
907
  queue : true,
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -1563,16 +1563,31 @@
1563
1563
  .ui.grid > [class*="ten column"].doubling.row > .column {
1564
1564
  width: 20% !important;
1565
1565
  }
1566
+ .ui[class*="eleven column"].doubling.grid > .row > .column,
1567
+ .ui[class*="eleven column"].doubling.grid > .column,
1568
+ .ui.grid > [class*="eleven column"].doubling.row > .column {
1569
+ width: 20% !important;
1570
+ }
1566
1571
  .ui[class*="twelve column"].doubling.grid > .row > .column,
1567
1572
  .ui[class*="twelve column"].doubling.grid > .column,
1568
1573
  .ui.grid > [class*="twelve column"].doubling.row > .column {
1569
1574
  width: 16.66666667% !important;
1570
1575
  }
1576
+ .ui[class*="thirteen column"].doubling.grid > .row > .column,
1577
+ .ui[class*="thirteen column"].doubling.grid > .column,
1578
+ .ui.grid > [class*="thirteen column"].doubling.row > .column {
1579
+ width: 16.66666667% !important;
1580
+ }
1571
1581
  .ui[class*="fourteen column"].doubling.grid > .row > .column,
1572
1582
  .ui[class*="fourteen column"].doubling.grid > .column,
1573
1583
  .ui.grid > [class*="fourteen column"].doubling.row > .column {
1574
1584
  width: 14.28571429% !important;
1575
1585
  }
1586
+ .ui[class*="fifteen column"].doubling.grid > .row > .column,
1587
+ .ui[class*="fifteen column"].doubling.grid > .column,
1588
+ .ui.grid > [class*="fifteen column"].doubling.row > .column {
1589
+ width: 14.28571429% !important;
1590
+ }
1576
1591
  .ui[class*="sixteen column"].doubling.grid > .row > .column,
1577
1592
  .ui[class*="sixteen column"].doubling.grid > .column,
1578
1593
  .ui.grid > [class*="sixteen column"].doubling.row > .column {
@@ -1643,16 +1658,31 @@
1643
1658
  .ui.grid > [class*="ten column"].doubling:not(.stackable).row > .column {
1644
1659
  width: 33.33333333% !important;
1645
1660
  }
1661
+ .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
1662
+ .ui[class*="eleven column"].doubling:not(.stackable).grid > .column,
1663
+ .ui.grid > [class*="eleven column"].doubling:not(.stackable).row > .column {
1664
+ width: 33.33333333% !important;
1665
+ }
1646
1666
  .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
1647
1667
  .ui[class*="twelve column"].doubling:not(.stackable).grid > .column,
1648
1668
  .ui.grid > [class*="twelve column"].doubling:not(.stackable).row > .column {
1649
1669
  width: 33.33333333% !important;
1650
1670
  }
1671
+ .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
1672
+ .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column,
1673
+ .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row > .column {
1674
+ width: 33.33333333% !important;
1675
+ }
1651
1676
  .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
1652
1677
  .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column,
1653
1678
  .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row > .column {
1654
1679
  width: 25% !important;
1655
1680
  }
1681
+ .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
1682
+ .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column,
1683
+ .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row > .column {
1684
+ width: 25% !important;
1685
+ }
1656
1686
  .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
1657
1687
  .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column,
1658
1688
  .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row > .column {
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -1479,24 +1479,22 @@
1479
1479
 
1480
1480
  .ui.pointing.menu .active.item:after {
1481
1481
  position: absolute;
1482
- bottom: -0.3em;
1483
- left: 50%;
1484
1482
  content: '';
1485
- margin-left: -0.3em;
1483
+ top: 100%;
1484
+ left: 50%;
1485
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1486
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
1487
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
1488
+ margin: 1px 0em 0em 0em;
1489
+ background: none;
1486
1490
  width: 0.6em;
1487
1491
  height: 0.6em;
1488
1492
  border: none;
1489
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1490
- border-right: 1px solid rgba(0, 0, 0, 0.1);
1491
- background: none;
1492
- -webkit-transform: rotate(45deg);
1493
- -ms-transform: rotate(45deg);
1494
- transform: rotate(45deg);
1493
+ border-bottom: 1px solid #d4d4d5;
1494
+ border-right: 1px solid #d4d4d5;
1495
1495
  z-index: 2;
1496
- -webkit-transition: background 0.2s ease
1497
- ;
1498
- transition: background 0.2s ease
1499
- ;
1496
+ -webkit-transition: background 0.2s ease;
1497
+ transition: background 0.2s ease;
1500
1498
  }
1501
1499
 
1502
1500
  /* Don't double up pointers */
@@ -1506,13 +1504,16 @@
1506
1504
  .ui.vertical.pointing.menu .active.item:after {
1507
1505
  position: absolute;
1508
1506
  top: 50%;
1509
- margin-top: -0.3em;
1510
- right: -0.3em;
1507
+ right: 0%;
1511
1508
  bottom: auto;
1512
1509
  left: auto;
1510
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
1511
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
1512
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
1513
+ margin: 0em -1px 0em 0em;
1513
1514
  border: none;
1514
- border-top: 1px solid rgba(0, 0, 0, 0.1);
1515
- border-right: 1px solid rgba(0, 0, 0, 0.1);
1515
+ border-top: 1px solid #d4d4d5;
1516
+ border-right: 1px solid #d4d4d5;
1516
1517
  }
1517
1518
 
1518
1519
  /* Colors */
@@ -1520,13 +1521,13 @@
1520
1521
  background-color: #fafafa;
1521
1522
  }
1522
1523
  .ui.pointing.menu .active.item:after {
1523
- background-color: #f6f6f6;
1524
+ background-color: #f7f7f7;
1524
1525
  }
1525
1526
  .ui.vertical.pointing.menu .item:hover:after {
1526
1527
  background-color: #fafafa;
1527
1528
  }
1528
1529
  .ui.vertical.pointing.menu .active.item:after {
1529
- background-color: #fcfcfc;
1530
+ background-color: #f7f7f7;
1530
1531
  }
1531
1532
 
1532
1533
  /*--------------
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *
@@ -73,9 +73,9 @@
73
73
 
74
74
  .ui.button:focus {
75
75
  background-color: '';
76
- background-image: '';
77
- box-shadow: 0px 0px 0px 1px transparent inset, 0px 0px 1px rgba(81, 167, 232, 0.8) inset, 0px 0px 3px 2px rgba(81, 167, 232, 0.8);
78
76
  color: rgba(0, 0, 0, 0.8);
77
+ background-image: '' !important;
78
+ box-shadow: 0px 0px 0px 1px transparent inset, 0px 0px 1px rgba(81, 167, 232, 0.8) inset, 0px 0px 3px 2px rgba(81, 167, 232, 0.8) !important;
79
79
  }
80
80
  .ui.button:focus .icon {
81
81
  opacity: 0.85;
@@ -205,6 +205,11 @@
205
205
  pointer-events: none;
206
206
  }
207
207
 
208
+ /* Basic Group With Disabled */
209
+ .ui.basic.buttons .ui.disabled.button {
210
+ border-color: rgba(39, 41, 43, 0.5);
211
+ }
212
+
208
213
 
209
214
  /*******************************
210
215
  Types
@@ -720,6 +725,13 @@
720
725
  .ui.basic.vertical.buttons .button {
721
726
  border-left: none;
722
727
  }
728
+ .ui.basic.vertical.buttons .button {
729
+ border-left-width: 0px;
730
+ border-top: 1px solid rgba(39, 41, 43, 0.15);
731
+ }
732
+ .ui.basic.vertical.buttons .button:first-child {
733
+ border-top-width: 0px;
734
+ }
723
735
 
724
736
  /*--------------
725
737
  Labeled Icon
@@ -1,5 +1,5 @@
1
1
  /*
2
- * # Semantic UI - 1.7.3
2
+ * # Semantic UI - 1.8.0
3
3
  * https://github.com/Semantic-Org/Semantic-UI
4
4
  * http://www.semantic-ui.com/
5
5
  *