semantic-ui-sass 2.0.7.0 → 2.1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/semantic-ui/accordion.js +17 -13
  3. data/app/assets/javascripts/semantic-ui/api.js +25 -7
  4. data/app/assets/javascripts/semantic-ui/checkbox.js +124 -48
  5. data/app/assets/javascripts/semantic-ui/dropdown.js +193 -108
  6. data/app/assets/javascripts/semantic-ui/embed.js +1 -4
  7. data/app/assets/javascripts/semantic-ui/form.js +125 -12
  8. data/app/assets/javascripts/semantic-ui/modal.js +13 -13
  9. data/app/assets/javascripts/semantic-ui/nag.js +11 -1
  10. data/app/assets/javascripts/semantic-ui/popup.js +23 -10
  11. data/app/assets/javascripts/semantic-ui/search.js +83 -54
  12. data/app/assets/javascripts/semantic-ui/sticky.js +34 -32
  13. data/app/assets/javascripts/semantic-ui/tab.js +8 -7
  14. data/app/assets/javascripts/semantic-ui/transition.js +5 -5
  15. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +2 -2
  16. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +102 -31
  17. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +159 -10
  18. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +151 -60
  19. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
  20. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +18 -1
  21. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +187 -97
  22. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +29 -5
  23. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +6 -3
  24. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  25. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -3
  26. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +23 -38
  27. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
  28. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +69 -39
  29. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +423 -222
  30. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +16 -1
  31. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
  32. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  33. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +5 -13
  34. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
  35. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +9 -6
  36. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  37. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
  38. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  39. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +7 -7
  40. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +26 -9
  42. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
  43. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +1 -1
  44. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
  45. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
  46. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
  48. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  49. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  50. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
  52. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  53. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  54. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  55. data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -1
  56. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  57. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +1 -1
  58. data/app/assets/stylesheets/semantic-ui/views/_item.scss +7 -7
  59. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +1 -1
  60. data/lib/semantic/ui/sass/version.rb +2 -2
  61. metadata +2 -2
@@ -390,12 +390,8 @@ $.fn.sticky = function(parameters) {
390
390
  },
391
391
  size: function() {
392
392
  if(module.cache.element.height !== 0 && module.cache.element.width !== 0) {
393
- $module
394
- .css({
395
- width : module.cache.element.width,
396
- height : module.cache.element.height
397
- })
398
- ;
393
+ element.style.setProperty('width', module.cache.element.width + 'px', 'important');
394
+ element.style.setProperty('height', module.cache.element.height + 'px', 'important');
399
395
  }
400
396
  }
401
397
  },
@@ -449,16 +445,17 @@ $.fn.sticky = function(parameters) {
449
445
  if(elementVisible) {
450
446
 
451
447
  if( module.is.initialPosition() ) {
452
- if(scroll.top > context.bottom) {
453
- module.debug('Element bottom of container');
448
+ if(scroll.top >= context.bottom) {
449
+ module.debug('Initial element position is bottom of container');
454
450
  module.bindBottom();
455
451
  }
456
452
  else if(scroll.top > element.top) {
457
- module.debug('Element passed, fixing element to page');
458
- if( (element.height + scroll.top - elementScroll) > context.bottom ) {
453
+ if( (element.height + scroll.top - elementScroll) >= context.bottom ) {
454
+ module.debug('Initial element position is bottom of container');
459
455
  module.bindBottom();
460
456
  }
461
457
  else {
458
+ module.debug('Initial element position is fixed');
462
459
  module.fixTop();
463
460
  }
464
461
  }
@@ -468,11 +465,11 @@ $.fn.sticky = function(parameters) {
468
465
 
469
466
  // currently fixed top
470
467
  if( module.is.top() ) {
471
- if( scroll.top < element.top ) {
468
+ if( scroll.top <= element.top ) {
472
469
  module.debug('Fixed element reached top of container');
473
470
  module.setInitialPosition();
474
471
  }
475
- else if( (element.height + scroll.top - elementScroll) > context.bottom ) {
472
+ else if( (element.height + scroll.top - elementScroll) >= context.bottom ) {
476
473
  module.debug('Fixed element reached bottom of container');
477
474
  module.bindBottom();
478
475
  }
@@ -488,12 +485,12 @@ $.fn.sticky = function(parameters) {
488
485
  else if(module.is.bottom() ) {
489
486
 
490
487
  // top edge
491
- if( (scroll.bottom - element.height) < element.top) {
488
+ if( (scroll.bottom - element.height) <= element.top) {
492
489
  module.debug('Bottom fixed rail has reached top of container');
493
490
  module.setInitialPosition();
494
491
  }
495
492
  // bottom edge
496
- else if(scroll.bottom > context.bottom) {
493
+ else if(scroll.bottom >= context.bottom) {
497
494
  module.debug('Bottom fixed rail has reached bottom of container');
498
495
  module.bindBottom();
499
496
  }
@@ -508,13 +505,13 @@ $.fn.sticky = function(parameters) {
508
505
  }
509
506
  else if( module.is.bottom() ) {
510
507
  if(settings.pushing) {
511
- if(module.is.bound() && scroll.bottom < context.bottom ) {
508
+ if(module.is.bound() && scroll.bottom <= context.bottom ) {
512
509
  module.debug('Fixing bottom attached element to bottom of browser.');
513
510
  module.fixBottom();
514
511
  }
515
512
  }
516
513
  else {
517
- if(module.is.bound() && (scroll.top < context.bottom - element.height) ) {
514
+ if(module.is.bound() && (scroll.top <= context.bottom - element.height) ) {
518
515
  module.debug('Fixing bottom attached element to top of browser.');
519
516
  module.fixTop();
520
517
  }
@@ -558,6 +555,7 @@ $.fn.sticky = function(parameters) {
558
555
  },
559
556
 
560
557
  setInitialPosition: function() {
558
+ module.debug('Returning to initial position');
561
559
  module.unfix();
562
560
  module.unbind();
563
561
  },
@@ -600,24 +598,28 @@ $.fn.sticky = function(parameters) {
600
598
  },
601
599
 
602
600
  unbind: function() {
603
- module.debug('Removing absolute position on element');
604
- module.remove.offset();
605
- $module
606
- .removeClass(className.bound)
607
- .removeClass(className.top)
608
- .removeClass(className.bottom)
609
- ;
601
+ if( module.is.bound() ) {
602
+ module.debug('Removing container bound position on element');
603
+ module.remove.offset();
604
+ $module
605
+ .removeClass(className.bound)
606
+ .removeClass(className.top)
607
+ .removeClass(className.bottom)
608
+ ;
609
+ }
610
610
  },
611
611
 
612
612
  unfix: function() {
613
- module.debug('Removing fixed position on element');
614
- module.remove.offset();
615
- $module
616
- .removeClass(className.fixed)
617
- .removeClass(className.top)
618
- .removeClass(className.bottom)
619
- ;
620
- settings.onUnstick.call(element);
613
+ if( module.is.fixed() ) {
614
+ module.debug('Removing fixed position on element');
615
+ module.remove.offset();
616
+ $module
617
+ .removeClass(className.fixed)
618
+ .removeClass(className.top)
619
+ .removeClass(className.bottom)
620
+ ;
621
+ settings.onUnstick.call(element);
622
+ }
621
623
  },
622
624
 
623
625
  reset: function() {
@@ -882,4 +884,4 @@ $.fn.sticky.settings = {
882
884
 
883
885
  };
884
886
 
885
- })( jQuery, window , document );
887
+ })( jQuery, window , document );
@@ -374,7 +374,7 @@ $.fn.tab = function(parameters) {
374
374
  else if(tabPath.search('/') == -1 && tabPath !== '') {
375
375
  // look for in page anchor
376
376
  $anchor = $('#' + tabPath + ', a[name="' + tabPath + '"]');
377
- currentPath = $anchor.closest('[data-tab]').data('tab');
377
+ currentPath = $anchor.closest('[data-tab]').data(metadata.tab);
378
378
  $tab = module.get.tabElement(currentPath);
379
379
  // if anchor exists use parent tab
380
380
  if($anchor && $anchor.length > 0 && currentPath) {
@@ -440,10 +440,11 @@ $.fn.tab = function(parameters) {
440
440
  var
441
441
  $tab = module.get.tabElement(tabPath),
442
442
  apiSettings = {
443
- dataType : 'html',
444
- on : 'now',
445
- cache : settings.alwaysRefresh,
446
- headers : {
443
+ dataType : 'html',
444
+ encodeParameters : false,
445
+ on : 'now',
446
+ cache : settings.alwaysRefresh,
447
+ headers : {
447
448
  'X-Remote': true
448
449
  },
449
450
  onSuccess : function(response) {
@@ -608,8 +609,8 @@ $.fn.tab = function(parameters) {
608
609
  tabPath = tabPath || activeTabPath;
609
610
  tabPathArray = module.utilities.pathToArray(tabPath);
610
611
  lastTab = module.utilities.last(tabPathArray);
611
- $fullPathTab = $tabs.filter('[data-' + metadata.tab + '="' + lastTab + '"]');
612
- $simplePathTab = $tabs.filter('[data-' + metadata.tab + '="' + tabPath + '"]');
612
+ $fullPathTab = $tabs.filter('[data-' + metadata.tab + '="' + tabPath + '"]');
613
+ $simplePathTab = $tabs.filter('[data-' + metadata.tab + '="' + lastTab + '"]');
613
614
  return ($fullPathTab.length > 0)
614
615
  ? $fullPathTab
615
616
  : $simplePathTab
@@ -392,7 +392,7 @@ $.fn.transition = function() {
392
392
  module.add.failSafe();
393
393
  }
394
394
  module.set.duration(settings.duration);
395
- settings.onStart.call(this);
395
+ settings.onStart.call(element);
396
396
  }
397
397
  },
398
398
 
@@ -768,8 +768,8 @@ $.fn.transition = function() {
768
768
  module.remove.visible();
769
769
  module.set.hidden();
770
770
  module.force.hidden();
771
- settings.onHide.call(this);
772
- settings.onComplete.call(this);
771
+ settings.onHide.call(element);
772
+ settings.onComplete.call(element);
773
773
  // module.repaint();
774
774
  },
775
775
 
@@ -778,8 +778,8 @@ $.fn.transition = function() {
778
778
  module.remove.hidden();
779
779
  module.set.visible();
780
780
  module.force.visible();
781
- settings.onShow.call(this);
782
- settings.onComplete.call(this);
781
+ settings.onShow.call(element);
782
+ settings.onComplete.call(element);
783
783
  // module.repaint();
784
784
  },
785
785
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Breadcrumb
2
+ * # Semantic UI 2.1.3 - Breadcrumb
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -16,8 +16,8 @@
16
16
 
17
17
  .ui.breadcrumb {
18
18
  line-height: 1;
19
- margin: 1em 0em;
20
19
  display: inline-block;
20
+ margin: 0em 0em;
21
21
  vertical-align: middle;
22
22
  }
23
23
  .ui.breadcrumb:first-child {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.0.7 - Form
2
+ * # Semantic UI 2.1.3 - Form
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -77,11 +77,16 @@
77
77
  .ui.form input[type="tel"],
78
78
  .ui.form input[type="time"],
79
79
  .ui.form input[type="text"],
80
- .ui.form input[type="url"],
81
- .ui.form .ui.input {
80
+ .ui.form input[type="url"] {
82
81
  width: 100%;
83
82
  vertical-align: top;
84
83
  }
84
+
85
+ /* Set max height on unusual input */
86
+ .ui.form ::-webkit-datetime-edit,
87
+ .ui.form ::-webkit-inner-spin-button {
88
+ height: 1.2142em;
89
+ }
85
90
  .ui.form input:not([type]),
86
91
  .ui.form input[type="date"],
87
92
  .ui.form input[type="datetime-local"],
@@ -110,11 +115,6 @@
110
115
  transition: color 0.1s ease, border-color 0.1s ease;
111
116
  }
112
117
 
113
- /* Collapse Flex */
114
- .ui.form .ui.input > input {
115
- width: 0px !important;
116
- }
117
-
118
118
  /* Text Area */
119
119
  .ui.form textarea {
120
120
  margin: 0em;
@@ -173,19 +173,68 @@
173
173
  Dropdown
174
174
  ---------------------*/
175
175
 
176
+
177
+ /* Block */
176
178
  .ui.form .field > .selection.dropdown {
177
179
  width: 100%;
178
180
  }
179
181
  .ui.form .field > .selection.dropdown > .dropdown.icon {
180
182
  float: right;
181
183
  }
184
+
185
+ /* Inline */
186
+ .ui.form .inline.fields .field > .selection.dropdown,
182
187
  .ui.form .inline.field > .selection.dropdown {
183
188
  width: auto;
184
189
  }
190
+ .ui.form .inline.fields .field > .selection.dropdown > .dropdown.icon,
185
191
  .ui.form .inline.field > .selection.dropdown > .dropdown.icon {
186
192
  float: none;
187
193
  }
188
194
 
195
+ /*--------------------
196
+ UI Input
197
+ ---------------------*/
198
+
199
+
200
+ /* Block */
201
+ .ui.form .field .ui.input,
202
+ .ui.form .fields .field .ui.input,
203
+ .ui.form .wide.field .ui.input {
204
+ width: 100%;
205
+ }
206
+
207
+ /* Inline */
208
+ .ui.form .inline.fields .field:not(.wide) .ui.input,
209
+ .ui.form .inline.field:not(.wide) .ui.input {
210
+ width: auto;
211
+ vertical-align: middle;
212
+ }
213
+
214
+ /* Auto Input */
215
+ .ui.form .fields .field .ui.input input,
216
+ .ui.form .field .ui.input input {
217
+ width: auto;
218
+ }
219
+
220
+ /* Full Width Input */
221
+ .ui.form .ten.fields .ui.input input,
222
+ .ui.form .nine.fields .ui.input input,
223
+ .ui.form .eight.fields .ui.input input,
224
+ .ui.form .seven.fields .ui.input input,
225
+ .ui.form .six.fields .ui.input input,
226
+ .ui.form .five.fields .ui.input input,
227
+ .ui.form .four.fields .ui.input input,
228
+ .ui.form .three.fields .ui.input input,
229
+ .ui.form .two.fields .ui.input input,
230
+ .ui.form .wide.field .ui.input input {
231
+ -webkit-box-flex: 1;
232
+ -webkit-flex: 1 0 auto;
233
+ -ms-flex: 1 0 auto;
234
+ flex: 1 0 auto;
235
+ width: 0px;
236
+ }
237
+
189
238
  /*--------------------
190
239
  Dividers
191
240
  ---------------------*/
@@ -215,13 +264,19 @@
215
264
  ---------------------*/
216
265
 
217
266
  .ui.form .field .prompt.label {
218
- white-space: nowrap;
267
+ white-space: normal;
268
+ background: #ffffff !important;
269
+ border: 1px solid #e0b4b4 !important;
270
+ color: #9f3a38 !important;
219
271
  }
272
+ .ui.form .inline.fields .field .prompt,
220
273
  .ui.form .inline.field .prompt {
221
- margin: -0.5em 0em -0.5em 1em;
274
+ vertical-align: top;
275
+ margin: -0.25em 0em -0.5em 0.5em;
222
276
  }
277
+ .ui.form .inline.fields .field .prompt:before,
223
278
  .ui.form .inline.field .prompt:before {
224
- margin-top: -0.3em;
279
+ border-width: 0px 0px 1px 1px;
225
280
  bottom: auto;
226
281
  right: auto;
227
282
  top: 50%;
@@ -282,22 +337,22 @@
282
337
 
283
338
  /* Error Placeholder */
284
339
  .ui.form .error ::-webkit-input-placeholder {
285
- color: #bf4d4b;
340
+ color: #e7bdbc;
286
341
  }
287
342
  .ui.form .error ::-ms-input-placeholder {
288
- color: #bf4d4b;
343
+ color: #e7bdbc;
289
344
  }
290
345
  .ui.form .error ::-moz-placeholder {
291
- color: #bf4d4b;
346
+ color: #e7bdbc;
292
347
  }
293
348
  .ui.form .error :focus::-webkit-input-placeholder {
294
- color: #b2413f;
349
+ color: #da9796;
295
350
  }
296
351
  .ui.form .error :focus::-ms-input-placeholder {
297
- color: #b2413f;
352
+ color: #da9796;
298
353
  }
299
354
  .ui.form .error :focus::-moz-placeholder {
300
- color: #b2413f;
355
+ color: #da9796;
301
356
  }
302
357
 
303
358
  /*--------------------
@@ -316,14 +371,14 @@
316
371
  .ui.form input[type="text"]:focus,
317
372
  .ui.form input[type="url"]:focus {
318
373
  color: rgba(0, 0, 0, 0.95);
319
- border-color: rgba(34, 36, 38, 0.35);
374
+ border-color: #85b7d9;
320
375
  border-radius: 0.28571429rem;
321
376
  background: #ffffff;
322
377
  box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
323
378
  }
324
379
  .ui.form textarea:focus {
325
380
  color: rgba(0, 0, 0, 0.95);
326
- border-color: rgba(34, 36, 38, 0.35);
381
+ border-color: #85b7d9;
327
382
  border-radius: 0.28571429rem;
328
383
  background: #ffffff;
329
384
  box-shadow: 0px 0em 0em 0em rgba(34, 36, 38, 0.35) inset;
@@ -336,10 +391,10 @@
336
391
 
337
392
 
338
393
  /* On Form */
339
- .ui.form.success .success.message {
394
+ .ui.form.success .success.message:not(:empty) {
340
395
  display: block;
341
396
  }
342
- .ui.form.success .icon.success.message {
397
+ .ui.form.success .icon.success.message:not(:empty) {
343
398
  display: -webkit-box;
344
399
  display: -webkit-flex;
345
400
  display: -ms-flexbox;
@@ -347,15 +402,15 @@
347
402
  }
348
403
 
349
404
  /*--------------------
350
- Error
405
+ Warning
351
406
  ---------------------*/
352
407
 
353
408
 
354
409
  /* On Form */
355
- .ui.form.warning .warning.message {
410
+ .ui.form.warning .warning.message:not(:empty) {
356
411
  display: block;
357
412
  }
358
- .ui.form.warning .icon.warning.message {
413
+ .ui.form.warning .icon.warning.message:not(:empty) {
359
414
  display: -webkit-box;
360
415
  display: -webkit-flex;
361
416
  display: -ms-flexbox;
@@ -368,10 +423,10 @@
368
423
 
369
424
 
370
425
  /* On Form */
371
- .ui.form.error .error.message {
426
+ .ui.form.error .error.message:not(:empty) {
372
427
  display: block;
373
428
  }
374
- .ui.form.error .icon.error.message {
429
+ .ui.form.error .icon.error.message:not(:empty) {
375
430
  display: -webkit-box;
376
431
  display: -webkit-flex;
377
432
  display: -ms-flexbox;
@@ -526,6 +581,7 @@
526
581
  .ui.form .disabled.fields .field,
527
582
  .ui.form .disabled.field,
528
583
  .ui.form .field :disabled {
584
+ pointer-events: none;
529
585
  opacity: 0.45;
530
586
  }
531
587
  .ui.form .field.disabled label {
@@ -651,6 +707,24 @@
651
707
  color: rgba(255, 255, 255, 0.9);
652
708
  }
653
709
 
710
+ /* Inverted Field */
711
+ .ui.inverted.form input:not([type]),
712
+ .ui.inverted.form input[type="date"],
713
+ .ui.inverted.form input[type="datetime-local"],
714
+ .ui.inverted.form input[type="email"],
715
+ .ui.inverted.form input[type="number"],
716
+ .ui.inverted.form input[type="password"],
717
+ .ui.inverted.form input[type="search"],
718
+ .ui.inverted.form input[type="tel"],
719
+ .ui.inverted.form input[type="time"],
720
+ .ui.inverted.form input[type="text"],
721
+ .ui.inverted.form input[type="url"] {
722
+ background: #ffffff;
723
+ border-color: rgba(255, 255, 255, 0.1);
724
+ color: rgba(0, 0, 0, 0.87);
725
+ box-shadow: none;
726
+ }
727
+
654
728
  /*--------------------
655
729
  Field Groups
656
730
  ---------------------*/
@@ -918,10 +992,8 @@
918
992
  /* Inline Input */
919
993
  .ui.form .inline.fields .field > input,
920
994
  .ui.form .inline.fields .field > select,
921
- .ui.form .inline.fields .field > .ui.input,
922
995
  .ui.form .inline.field > input,
923
- .ui.form .inline.field > select,
924
- .ui.form .inline.field > .ui.input {
996
+ .ui.form .inline.field > select {
925
997
  display: inline-block;
926
998
  width: auto;
927
999
  margin-top: 0em;
@@ -952,8 +1024,7 @@
952
1024
  align-items: center;
953
1025
  }
954
1026
  .ui.form .inline.fields .wide.field > input,
955
- .ui.form .inline.fields .wide.field > select,
956
- .ui.form .inline.fields .wide.field > .ui.input {
1027
+ .ui.form .inline.fields .wide.field > select {
957
1028
  width: 100%;
958
1029
  }
959
1030