semantic-ui-sass 2.2.10.1 → 2.2.11.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -125,10 +125,10 @@ $.fn.popup = function(parameters) {
125
125
  }
126
126
  if(settings.popup) {
127
127
  $popup.addClass(className.loading);
128
- $offsetParent = module.get.offsetParent();
128
+ $offsetParent = module.get.offsetParent($target);
129
129
  $popup.removeClass(className.loading);
130
130
  if(settings.movePopup && module.has.popup() && module.get.offsetParent($popup)[0] !== $offsetParent[0]) {
131
- module.debug('Moving popup to the same offset parent as activating element');
131
+ module.debug('Moving popup to the same offset parent as target');
132
132
  $popup
133
133
  .detach()
134
134
  .appendTo($offsetParent)
@@ -139,7 +139,7 @@ $.fn.popup = function(parameters) {
139
139
  $offsetParent = (settings.inline)
140
140
  ? module.get.offsetParent($target)
141
141
  : module.has.popup()
142
- ? module.get.offsetParent($popup)
142
+ ? module.get.offsetParent($target)
143
143
  : $body
144
144
  ;
145
145
  }
@@ -360,7 +360,7 @@ $.fn.popup = function(parameters) {
360
360
 
361
361
  hideAll: function() {
362
362
  $(selector.popup)
363
- .filter('.' + className.visible)
363
+ .filter('.' + className.popupVisible)
364
364
  .each(function() {
365
365
  $(this)
366
366
  .data(metadata.activator)
@@ -415,7 +415,7 @@ $.fn.popup = function(parameters) {
415
415
  },
416
416
  supports: {
417
417
  svg: function() {
418
- return (typeof SVGGraphicsElement === undefined);
418
+ return (typeof SVGGraphicsElement === 'undefined');
419
419
  }
420
420
  },
421
421
  animate: {
@@ -986,28 +986,38 @@ $.fn.popup = function(parameters) {
986
986
  },
987
987
  close: function() {
988
988
  if(settings.hideOnScroll === true || (settings.hideOnScroll == 'auto' && settings.on != 'click')) {
989
- $scrollContext
990
- .one(module.get.scrollEvent() + elementNamespace, module.event.hideGracefully)
991
- ;
989
+ module.bind.closeOnScroll();
992
990
  }
993
991
  if(settings.on == 'hover' && openedWithTouch) {
994
- module.verbose('Binding popup close event to document');
995
- $document
996
- .on('touchstart' + elementNamespace, function(event) {
997
- module.verbose('Touched away from popup');
998
- module.event.hideGracefully.call(element, event);
999
- })
1000
- ;
992
+ module.bind.touchClose();
1001
993
  }
1002
994
  if(settings.on == 'click' && settings.closable) {
1003
- module.verbose('Binding popup close event to document');
1004
- $document
1005
- .on('click' + elementNamespace, function(event) {
1006
- module.verbose('Clicked away from popup');
1007
- module.event.hideGracefully.call(element, event);
1008
- })
1009
- ;
995
+ module.bind.clickaway();
1010
996
  }
997
+ },
998
+ closeOnScroll: function() {
999
+ module.verbose('Binding scroll close event to document');
1000
+ $scrollContext
1001
+ .one(module.get.scrollEvent() + elementNamespace, module.event.hideGracefully)
1002
+ ;
1003
+ },
1004
+ touchClose: function() {
1005
+ module.verbose('Binding popup touchclose event to document');
1006
+ $document
1007
+ .on('touchstart' + elementNamespace, function(event) {
1008
+ module.verbose('Touched away from popup');
1009
+ module.event.hideGracefully.call(element, event);
1010
+ })
1011
+ ;
1012
+ },
1013
+ clickaway: function() {
1014
+ module.verbose('Binding popup close event to document');
1015
+ $document
1016
+ .on('click' + elementNamespace, function(event) {
1017
+ module.verbose('Clicked away from popup');
1018
+ module.event.hideGracefully.call(element, event);
1019
+ })
1020
+ ;
1011
1021
  }
1012
1022
  },
1013
1023
 
@@ -1068,7 +1078,7 @@ $.fn.popup = function(parameters) {
1068
1078
  return ($popup !== undefined && $popup.hasClass(className.fluid));
1069
1079
  },
1070
1080
  visible: function() {
1071
- return ($popup !== undefined && $popup.hasClass(className.visible));
1081
+ return ($popup !== undefined && $popup.hasClass(className.popupVisible));
1072
1082
  },
1073
1083
  dropdown: function() {
1074
1084
  return $module.hasClass(className.dropdown);
@@ -1414,14 +1424,15 @@ $.fn.popup.settings = {
1414
1424
  },
1415
1425
 
1416
1426
  className : {
1417
- active : 'active',
1418
- animating : 'animating',
1419
- dropdown : 'dropdown',
1420
- fluid : 'fluid',
1421
- loading : 'loading',
1422
- popup : 'ui popup',
1423
- position : 'top left center bottom right',
1424
- visible : 'visible'
1427
+ active : 'active',
1428
+ animating : 'animating',
1429
+ dropdown : 'dropdown',
1430
+ fluid : 'fluid',
1431
+ loading : 'loading',
1432
+ popup : 'ui popup',
1433
+ position : 'top left center bottom right',
1434
+ visible : 'visible',
1435
+ popupVisible : 'visible'
1425
1436
  },
1426
1437
 
1427
1438
  selector : {
@@ -143,8 +143,17 @@ $.fn.search = function(parameters) {
143
143
 
144
144
  event: {
145
145
  input: function() {
146
- clearTimeout(module.timer);
147
- module.timer = setTimeout(module.query, settings.searchDelay);
146
+ if(settings.searchDelay) {
147
+ clearTimeout(module.timer);
148
+ module.timer = setTimeout(function() {
149
+ if(module.is.focused()) {
150
+ module.query();
151
+ }
152
+ }, settings.searchDelay);
153
+ }
154
+ else {
155
+ module.query();
156
+ }
148
157
  },
149
158
  focus: function() {
150
159
  module.set.focus();
@@ -89,10 +89,6 @@ $.fn.sidebar = function(parameters) {
89
89
 
90
90
  transitionEvent = module.get.transitionEvent();
91
91
 
92
- if(module.is.ios()) {
93
- module.set.ios();
94
- }
95
-
96
92
  // avoids locking rendering if initialized in onReady
97
93
  if(settings.delaySetup) {
98
94
  requestAnimationFrame(module.setup.layout);
@@ -569,6 +565,7 @@ $.fn.sidebar = function(parameters) {
569
565
  set: {
570
566
 
571
567
  // ios only (scroll on html not document). This prevent auto-resize canvas/scroll in ios
568
+ // (This is no longer necessary in latest iOS)
572
569
  ios: function() {
573
570
  $html.addClass(className.ios);
574
571
  },
@@ -286,7 +286,8 @@ $.fn.sticky = function(parameters) {
286
286
  context.offset.left += scrollContext.left;
287
287
  }
288
288
  module.cache = {
289
- fits : ( element.height < scrollContext.height ),
289
+ fits : ( (element.height + settings.offset) <= scrollContext.height),
290
+ sameHeight : (element.height == context.height),
290
291
  scrollContext : {
291
292
  height : scrollContext.height
292
293
  },
@@ -305,7 +306,7 @@ $.fn.sticky = function(parameters) {
305
306
  }
306
307
  };
307
308
  module.set.containerSize();
308
- module.set.size();
309
+
309
310
  module.stick();
310
311
  module.debug('Caching element positions', module.cache);
311
312
  }
@@ -374,6 +375,11 @@ $.fn.sticky = function(parameters) {
374
375
  elementScroll: function(scroll) {
375
376
  delete module.elementScroll;
376
377
  },
378
+ minimumSize: function() {
379
+ $container
380
+ .css('min-height', '')
381
+ ;
382
+ },
377
383
  offset: function() {
378
384
  $module.css('margin-top', '');
379
385
  }
@@ -467,6 +473,7 @@ $.fn.sticky = function(parameters) {
467
473
  cachedPosition = scroll || $scroll.scrollTop(),
468
474
  cache = module.cache,
469
475
  fits = cache.fits,
476
+ sameHeight = cache.sameHeight,
470
477
  element = cache.element,
471
478
  scrollContext = cache.scrollContext,
472
479
  context = cache.context,
@@ -486,8 +493,7 @@ $.fn.sticky = function(parameters) {
486
493
  doesntFit = !fits,
487
494
  elementVisible = (element.height !== 0)
488
495
  ;
489
-
490
- if(elementVisible) {
496
+ if(elementVisible && !sameHeight) {
491
497
 
492
498
  if( module.is.initialPosition() ) {
493
499
  if(scroll.top >= context.bottom) {
@@ -614,6 +620,9 @@ $.fn.sticky = function(parameters) {
614
620
 
615
621
  fixTop: function() {
616
622
  module.debug('Fixing element to top of page');
623
+ if(settings.setSize) {
624
+ module.set.size();
625
+ }
617
626
  module.set.minimumSize();
618
627
  module.set.offset();
619
628
  $module
@@ -632,6 +641,9 @@ $.fn.sticky = function(parameters) {
632
641
 
633
642
  fixBottom: function() {
634
643
  module.debug('Sticking element to bottom of page');
644
+ if(settings.setSize) {
645
+ module.set.size();
646
+ }
635
647
  module.set.minimumSize();
636
648
  module.set.offset();
637
649
  $module
@@ -663,6 +675,7 @@ $.fn.sticky = function(parameters) {
663
675
  unfix: function() {
664
676
  if( module.is.fixed() ) {
665
677
  module.debug('Removing fixed position on element');
678
+ module.remove.minimumSize();
666
679
  module.remove.offset();
667
680
  $module
668
681
  .removeClass(className.fixed)
@@ -898,7 +911,11 @@ $.fn.sticky.settings = {
898
911
  // Offset to adjust scroll when attached to bottom of screen
899
912
  bottomOffset : 0,
900
913
 
901
- jitter : 5, // will only set container height if difference between context and container is larger than this number
914
+ // will only set container height if difference between context and container is larger than this number
915
+ jitter : 5,
916
+
917
+ // set width of sticky element when it is fixed to page (used to make sure 100% width is maintained if no fixed size set)
918
+ setSize : true,
902
919
 
903
920
  // Whether to automatically observe changes with Mutation Observers
904
921
  observeChanges : false,
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Breadcrumb
2
+ * # Semantic UI 2.2.11 - Breadcrumb
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.2.10 - Form
2
+ * # Semantic UI 2.2.11 - Form
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -230,7 +230,6 @@
230
230
  .ui.form .two.fields .ui.input input,
231
231
  .ui.form .wide.field .ui.input input {
232
232
  -webkit-box-flex: 1;
233
- -webkit-flex: 1 0 auto;
234
233
  -ms-flex: 1 0 auto;
235
234
  flex: 1 0 auto;
236
235
  width: 0px;
@@ -392,7 +391,6 @@
392
391
  }
393
392
  .ui.form.success .icon.success.message:not(:empty) {
394
393
  display: -webkit-box;
395
- display: -webkit-flex;
396
394
  display: -ms-flexbox;
397
395
  display: flex;
398
396
  }
@@ -411,7 +409,6 @@
411
409
  }
412
410
  .ui.form.warning .icon.warning.message:not(:empty) {
413
411
  display: -webkit-box;
414
- display: -webkit-flex;
415
412
  display: -ms-flexbox;
416
413
  display: flex;
417
414
  }
@@ -430,7 +427,6 @@
430
427
  }
431
428
  .ui.form.error .icon.error.message:not(:empty) {
432
429
  display: -webkit-box;
433
- display: -webkit-flex;
434
430
  display: -ms-flexbox;
435
431
  display: flex;
436
432
  }
@@ -767,19 +763,16 @@
767
763
  /* Split fields */
768
764
  .ui.form .fields {
769
765
  display: -webkit-box;
770
- display: -webkit-flex;
771
766
  display: -ms-flexbox;
772
767
  display: flex;
773
768
  -webkit-box-orient: horizontal;
774
769
  -webkit-box-direction: normal;
775
- -webkit-flex-direction: row;
776
770
  -ms-flex-direction: row;
777
771
  flex-direction: row;
778
772
  margin: 0em -0.5em 1em;
779
773
  }
780
774
  .ui.form .fields > .field {
781
775
  -webkit-box-flex: 0;
782
- -webkit-flex: 0 1 auto;
783
776
  -ms-flex: 0 1 auto;
784
777
  flex: 0 1 auto;
785
778
  padding-left: 0.5em;
@@ -831,30 +824,29 @@
831
824
  /* Swap to full width on mobile */
832
825
  @media only screen and (max-width: 767px) {
833
826
  .ui.form .fields {
834
- -webkit-flex-wrap: wrap;
835
- -ms-flex-wrap: wrap;
836
- flex-wrap: wrap;
827
+ -ms-flex-wrap: wrap;
828
+ flex-wrap: wrap;
837
829
  }
838
- .ui[class*="equal width"].form .fields > .field,
839
- .ui.form [class*="equal width"].fields > .field,
840
- .ui.form .two.fields > .fields,
841
- .ui.form .two.fields > .field,
842
- .ui.form .three.fields > .fields,
843
- .ui.form .three.fields > .field,
844
- .ui.form .four.fields > .fields,
845
- .ui.form .four.fields > .field,
846
- .ui.form .five.fields > .fields,
847
- .ui.form .five.fields > .field,
848
- .ui.form .six.fields > .fields,
849
- .ui.form .six.fields > .field,
850
- .ui.form .seven.fields > .fields,
851
- .ui.form .seven.fields > .field,
852
- .ui.form .eight.fields > .fields,
853
- .ui.form .eight.fields > .field,
854
- .ui.form .nine.fields > .fields,
855
- .ui.form .nine.fields > .field,
856
- .ui.form .ten.fields > .fields,
857
- .ui.form .ten.fields > .field {
830
+ .ui[class*="equal width"].form:not(.unstackable) .fields > .field,
831
+ .ui.form:not(.unstackable) [class*="equal width"].fields:not(.unstackable) > .field,
832
+ .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields,
833
+ .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field,
834
+ .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields,
835
+ .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field,
836
+ .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields,
837
+ .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field,
838
+ .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields,
839
+ .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field,
840
+ .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .fields,
841
+ .ui.form:not(.unstackable) .six.fields:not(.unstackable) > .field,
842
+ .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .fields,
843
+ .ui.form:not(.unstackable) .seven.fields:not(.unstackable) > .field,
844
+ .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .fields,
845
+ .ui.form:not(.unstackable) .eight.fields:not(.unstackable) > .field,
846
+ .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .fields,
847
+ .ui.form:not(.unstackable) .nine.fields:not(.unstackable) > .field,
848
+ .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .fields,
849
+ .ui.form:not(.unstackable) .ten.fields:not(.unstackable) > .field {
858
850
  width: 100% !important;
859
851
  margin: 0em 0em 1em;
860
852
  }
@@ -917,29 +909,29 @@
917
909
 
918
910
  /* Swap to full width on mobile */
919
911
  @media only screen and (max-width: 767px) {
920
- .ui.form .two.fields > .fields,
921
- .ui.form .two.fields > .field,
922
- .ui.form .three.fields > .fields,
923
- .ui.form .three.fields > .field,
924
- .ui.form .four.fields > .fields,
925
- .ui.form .four.fields > .field,
926
- .ui.form .five.fields > .fields,
927
- .ui.form .five.fields > .field,
928
- .ui.form .fields > .two.wide.field,
929
- .ui.form .fields > .three.wide.field,
930
- .ui.form .fields > .four.wide.field,
931
- .ui.form .fields > .five.wide.field,
932
- .ui.form .fields > .six.wide.field,
933
- .ui.form .fields > .seven.wide.field,
934
- .ui.form .fields > .eight.wide.field,
935
- .ui.form .fields > .nine.wide.field,
936
- .ui.form .fields > .ten.wide.field,
937
- .ui.form .fields > .eleven.wide.field,
938
- .ui.form .fields > .twelve.wide.field,
939
- .ui.form .fields > .thirteen.wide.field,
940
- .ui.form .fields > .fourteen.wide.field,
941
- .ui.form .fields > .fifteen.wide.field,
942
- .ui.form .fields > .sixteen.wide.field {
912
+ .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .fields,
913
+ .ui.form:not(.unstackable) .two.fields:not(.unstackable) > .field,
914
+ .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .fields,
915
+ .ui.form:not(.unstackable) .three.fields:not(.unstackable) > .field,
916
+ .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .fields,
917
+ .ui.form:not(.unstackable) .four.fields:not(.unstackable) > .field,
918
+ .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .fields,
919
+ .ui.form:not(.unstackable) .five.fields:not(.unstackable) > .field,
920
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .two.wide.field,
921
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .three.wide.field,
922
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .four.wide.field,
923
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .five.wide.field,
924
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .six.wide.field,
925
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .seven.wide.field,
926
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .eight.wide.field,
927
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .nine.wide.field,
928
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .ten.wide.field,
929
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .eleven.wide.field,
930
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .twelve.wide.field,
931
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .thirteen.wide.field,
932
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .fourteen.wide.field,
933
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .fifteen.wide.field,
934
+ .ui.form:not(.unstackable) .fields:not(.unstackable) > .sixteen.wide.field {
943
935
  width: 100% !important;
944
936
  }
945
937
  .ui.form .fields {
@@ -955,7 +947,6 @@
955
947
  .ui.form [class*="equal width"].fields > .field {
956
948
  width: 100%;
957
949
  -webkit-box-flex: 1;
958
- -webkit-flex: 1 1 auto;
959
950
  -ms-flex: 1 1 auto;
960
951
  flex: 1 1 auto;
961
952
  }
@@ -967,9 +958,7 @@
967
958
  .ui.form .inline.fields {
968
959
  margin: 0em 0em 1em;
969
960
  -webkit-box-align: center;
970
- -webkit-align-items: center;
971
961
  -ms-flex-align: center;
972
- -ms-grid-row-align: center;
973
962
  align-items: center;
974
963
  }
975
964
  .ui.form .inline.fields .field {
@@ -1025,11 +1014,9 @@
1025
1014
  /* Wide */
1026
1015
  .ui.form .inline.fields .wide.field {
1027
1016
  display: -webkit-box;
1028
- display: -webkit-flex;
1029
1017
  display: -ms-flexbox;
1030
1018
  display: flex;
1031
1019
  -webkit-box-align: center;
1032
- -webkit-align-items: center;
1033
1020
  -ms-flex-align: center;
1034
1021
  align-items: center;
1035
1022
  }