less-rails-semantic_ui 1.2.0.0 → 1.3.1.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 (33) hide show
  1. checksums.yaml +4 -4
  2. data/assets/javascripts/semantic_ui/definitions/behaviors/api.js +1 -0
  3. data/assets/javascripts/semantic_ui/definitions/behaviors/form.js +8 -4
  4. data/assets/javascripts/semantic_ui/definitions/behaviors/visibility.js +36 -17
  5. data/assets/javascripts/semantic_ui/definitions/behaviors/visit.js +2 -2
  6. data/assets/javascripts/semantic_ui/definitions/modules/accordion.js +2 -1
  7. data/assets/javascripts/semantic_ui/definitions/modules/checkbox.js +2 -1
  8. data/assets/javascripts/semantic_ui/definitions/modules/dimmer.js +1 -0
  9. data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +206 -108
  10. data/assets/javascripts/semantic_ui/definitions/modules/modal.js +79 -61
  11. data/assets/javascripts/semantic_ui/definitions/modules/sidebar.js +41 -5
  12. data/assets/javascripts/semantic_ui/definitions/modules/transition.js +1 -1
  13. data/assets/javascripts/semantic_ui/definitions/modules/video.js +1 -0
  14. data/assets/stylesheets/semantic_ui/definitions/collections/form.less +6 -4
  15. data/assets/stylesheets/semantic_ui/definitions/collections/grid.less +104 -99
  16. data/assets/stylesheets/semantic_ui/definitions/collections/table.less +155 -40
  17. data/assets/stylesheets/semantic_ui/definitions/elements/button.less +3 -2
  18. data/assets/stylesheets/semantic_ui/definitions/elements/image.less +28 -2
  19. data/assets/stylesheets/semantic_ui/definitions/elements/label.less +17 -1
  20. data/assets/stylesheets/semantic_ui/definitions/elements/segment.less +0 -4
  21. data/assets/stylesheets/semantic_ui/definitions/elements/step.less +82 -10
  22. data/assets/stylesheets/semantic_ui/definitions/modules/dropdown.less +31 -3
  23. data/assets/stylesheets/semantic_ui/definitions/modules/modal.less +0 -6
  24. data/assets/stylesheets/semantic_ui/definitions/modules/sidebar.less +6 -2
  25. data/assets/stylesheets/semantic_ui/themes/default/collections/table.variables +2 -2
  26. data/assets/stylesheets/semantic_ui/themes/default/elements/button.variables +1 -1
  27. data/assets/stylesheets/semantic_ui/themes/default/elements/step.variables +8 -3
  28. data/assets/stylesheets/semantic_ui/themes/default/globals/site.variables +1 -0
  29. data/assets/stylesheets/semantic_ui/themes/default/modules/dropdown.overrides +5 -0
  30. data/assets/stylesheets/semantic_ui/themes/default/modules/dropdown.variables +9 -0
  31. data/assets/stylesheets/semantic_ui/themes/default/modules/modal.variables +0 -3
  32. data/less-rails-semantic_ui.gemspec +2 -2
  33. metadata +4 -4
@@ -76,14 +76,13 @@ $.fn.modal = function(parameters) {
76
76
  initialize: function() {
77
77
  module.verbose('Initializing dimmer', $context);
78
78
 
79
+ module.create.id();
80
+
79
81
  if($.fn.dimmer === undefined) {
80
82
  module.error(error.dimmer);
81
83
  return;
82
84
  }
83
85
 
84
- id = module.get.uniqueID();
85
- elementNamespace = '.' + id;
86
-
87
86
  $dimmable = $context
88
87
  .dimmer({
89
88
  debug : settings.debug,
@@ -91,11 +90,12 @@ $.fn.modal = function(parameters) {
91
90
  closable : false,
92
91
  useCSS : true,
93
92
  duration : {
94
- show : settings.duration * 0.9,
95
- hide : settings.duration * 1.1
93
+ show : settings.duration,
94
+ hide : settings.duration
96
95
  }
97
96
  })
98
97
  ;
98
+
99
99
  if(settings.detachable) {
100
100
  $dimmable.dimmer('add content', $module);
101
101
  }
@@ -106,7 +106,6 @@ $.fn.modal = function(parameters) {
106
106
  module.verbose('Attaching close events', $close);
107
107
  module.bind.events();
108
108
  module.observeChanges();
109
-
110
109
  module.instantiate();
111
110
  },
112
111
 
@@ -118,6 +117,14 @@ $.fn.modal = function(parameters) {
118
117
  ;
119
118
  },
120
119
 
120
+ create: {
121
+ id: function() {
122
+ module.verbose('Creating unique id for element');
123
+ id = module.get.uniqueID();
124
+ elementNamespace = '.' + id;
125
+ }
126
+ },
127
+
121
128
  destroy: function() {
122
129
  module.verbose('Destroying previous modal');
123
130
  $module
@@ -272,7 +279,6 @@ $.fn.modal = function(parameters) {
272
279
  : function(){}
273
280
  ;
274
281
  module.refreshModals();
275
- module.showDimmer();
276
282
  module.showModal(callback);
277
283
  },
278
284
 
@@ -282,9 +288,6 @@ $.fn.modal = function(parameters) {
282
288
  : function(){}
283
289
  ;
284
290
  module.refreshModals();
285
- if( !module.othersActive() ) {
286
- module.hideDimmer();
287
- }
288
291
  module.hideModal(callback);
289
292
  },
290
293
 
@@ -293,7 +296,14 @@ $.fn.modal = function(parameters) {
293
296
  ? callback
294
297
  : function(){}
295
298
  ;
296
- if( !module.is.active() ) {
299
+ if( module.is.animating() || !module.is.active() ) {
300
+
301
+ module.showDimmer();
302
+ module.cacheSizes();
303
+ module.set.position();
304
+ module.set.screenHeight();
305
+ module.set.type();
306
+ module.set.clickaway();
297
307
 
298
308
  if( !settings.allowMultiple && $otherModals.filter(':visible').size() > 0) {
299
309
  module.debug('Other modals visible, queueing show animation');
@@ -303,17 +313,13 @@ $.fn.modal = function(parameters) {
303
313
  $.proxy(settings.onShow, element)();
304
314
  if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
305
315
  module.debug('Showing modal with css animations');
306
- module.cacheSizes();
307
- module.set.position();
308
- module.set.screenHeight();
309
- module.set.type();
310
- module.set.clickaway();
311
316
  $module
312
317
  .transition({
313
- debug : settings.debug,
314
- animation : settings.transition + ' in',
315
- queue : false,
316
- duration : settings.duration,
318
+ debug : settings.debug,
319
+ animation : settings.transition + ' in',
320
+ queue : settings.queue,
321
+ duration : settings.duration,
322
+ useFailSafe : true,
317
323
  onComplete : function() {
318
324
  $.proxy(settings.onVisible, element)();
319
325
  module.add.keyboardShortcuts();
@@ -344,8 +350,57 @@ $.fn.modal = function(parameters) {
344
350
  }
345
351
  },
346
352
 
353
+ hideModal: function(callback) {
354
+ callback = $.isFunction(callback)
355
+ ? callback
356
+ : function(){}
357
+ ;
358
+ module.debug('Hiding modal');
359
+ $.proxy(settings.onHide, element)();
360
+
361
+ if( module.is.animating() || module.is.active() ) {
362
+ if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
363
+ module.remove.active();
364
+ $module
365
+ .transition({
366
+ debug : settings.debug,
367
+ animation : settings.transition + ' out',
368
+ queue : settings.queue,
369
+ duration : settings.duration,
370
+ useFailSafe : true,
371
+ onStart : function() {
372
+ if( !module.othersActive() ) {
373
+ module.hideDimmer();
374
+ }
375
+ module.remove.keyboardShortcuts();
376
+ },
377
+ onComplete : function() {
378
+ $.proxy(settings.onHidden, element)();
379
+ module.restore.focus();
380
+ callback();
381
+ }
382
+ })
383
+ ;
384
+ }
385
+ else {
386
+ module.remove.active();
387
+ if( !module.othersActive() ) {
388
+ module.hideDimmer();
389
+ }
390
+ module.remove.keyboardShortcuts();
391
+ $module
392
+ .fadeOut(settings.duration, settings.easing, function() {
393
+ $.proxy(settings.onHidden, element)();
394
+ module.restore.focus();
395
+ callback();
396
+ })
397
+ ;
398
+ }
399
+ }
400
+ },
401
+
347
402
  showDimmer: function() {
348
- if( !$dimmable.dimmer('is active') ) {
403
+ if($dimmable.dimmer('is animating') || !$dimmable.dimmer('is active') ) {
349
404
  module.debug('Showing dimmer');
350
405
  $dimmable.dimmer('show');
351
406
  }
@@ -355,7 +410,7 @@ $.fn.modal = function(parameters) {
355
410
  },
356
411
 
357
412
  hideDimmer: function() {
358
- if( !($dimmable.dimmer('is active') || $dimmable.dimmer('is animating')) ) {
413
+ if( $dimmable.dimmer('is animating') || ($dimmable.dimmer('is active')) ) {
359
414
  module.debug('Dimmer is not visible cannot hide');
360
415
  return;
361
416
  }
@@ -368,45 +423,6 @@ $.fn.modal = function(parameters) {
368
423
  });
369
424
  },
370
425
 
371
- hideModal: function(callback) {
372
- callback = $.isFunction(callback)
373
- ? callback
374
- : function(){}
375
- ;
376
- module.debug('Hiding modal');
377
- $.proxy(settings.onHide, element)();
378
- if(settings.transition && $.fn.transition !== undefined && $module.transition('is supported')) {
379
- module.remove.active();
380
- $module
381
- .transition({
382
- debug : settings.debug,
383
- animation : settings.transition + ' out',
384
- queue : false,
385
- duration : settings.duration,
386
- onStart : function() {
387
- module.remove.keyboardShortcuts();
388
- },
389
- onComplete : function() {
390
- $.proxy(settings.onHidden, element)();
391
- module.restore.focus();
392
- callback();
393
- }
394
- })
395
- ;
396
- }
397
- else {
398
- module.remove.active();
399
- module.remove.keyboardShortcuts();
400
- $module
401
- .fadeOut(settings.duration, settings.easing, function() {
402
- $.proxy(settings.onHidden, element)();
403
- module.restore.focus();
404
- callback();
405
- })
406
- ;
407
- }
408
- },
409
-
410
426
  hideAll: function(callback) {
411
427
  callback = $.isFunction(callback)
412
428
  ? callback
@@ -798,6 +814,7 @@ $.fn.modal.settings = {
798
814
 
799
815
  context : 'body',
800
816
 
817
+ queue : false,
801
818
  duration : 500,
802
819
  easing : 'easeOutExpo',
803
820
  offset : 0,
@@ -827,6 +844,7 @@ $.fn.modal.settings = {
827
844
  },
828
845
  className : {
829
846
  active : 'active',
847
+ animating : 'animating',
830
848
  scrolling : 'scrolling'
831
849
  }
832
850
  };
@@ -18,6 +18,7 @@ $.fn.sidebar = function(parameters) {
18
18
  $allModules = $(this),
19
19
  $window = $(window),
20
20
  $document = $(document),
21
+ $html = $('html'),
21
22
  $head = $('head'),
22
23
 
23
24
  moduleSelector = $allModules.selector || '',
@@ -48,6 +49,7 @@ $.fn.sidebar = function(parameters) {
48
49
  selector = settings.selector,
49
50
  className = settings.className,
50
51
  namespace = settings.namespace,
52
+ regExp = settings.regExp,
51
53
  error = settings.error,
52
54
 
53
55
  eventNamespace = '.' + namespace,
@@ -76,6 +78,8 @@ $.fn.sidebar = function(parameters) {
76
78
  initialize: function() {
77
79
  module.debug('Initializing sidebar', parameters);
78
80
 
81
+ module.create.id();
82
+
79
83
  transitionEvent = module.get.transitionEvent();
80
84
 
81
85
  // cache on initialize
@@ -84,8 +88,9 @@ $.fn.sidebar = function(parameters) {
84
88
  settings.useLegacy = true;
85
89
  }
86
90
 
87
- id = module.get.uniqueID();
88
- elementNamespace = '.' + id;
91
+ if(module.is.ios()) {
92
+ module.set.ios();
93
+ }
89
94
 
90
95
  // avoids locking rendering if initialized in onReady
91
96
  requestAnimationFrame(module.setup.layout);
@@ -101,6 +106,14 @@ $.fn.sidebar = function(parameters) {
101
106
  ;
102
107
  },
103
108
 
109
+ create: {
110
+ id: function() {
111
+ module.verbose('Creating unique id for element');
112
+ id = module.get.uniqueID();
113
+ elementNamespace = '.' + id;
114
+ }
115
+ },
116
+
104
117
  destroy: function() {
105
118
  module.verbose('Destroying previous module for', $module);
106
119
  module.remove.direction();
@@ -419,7 +432,7 @@ $.fn.sidebar = function(parameters) {
419
432
  ? callback
420
433
  : function(){}
421
434
  ;
422
- if(settings.transition == 'scale down' || (module.is.mobile() && transition !== 'overlay')) {
435
+ if(settings.transition == 'scale down') {
423
436
  module.scrollToTop();
424
437
  }
425
438
  module.set.transition();
@@ -561,6 +574,11 @@ $.fn.sidebar = function(parameters) {
561
574
  },
562
575
 
563
576
  set: {
577
+ // html
578
+ ios: function() {
579
+ $html.addClass(className.ios);
580
+ },
581
+
564
582
  // container
565
583
  pushed: function() {
566
584
  $context.addClass(className.pushed);
@@ -714,11 +732,23 @@ $.fn.sidebar = function(parameters) {
714
732
  document.body.removeChild(element);
715
733
  return !(has3D !== undefined && has3D.length > 0 && has3D !== 'none');
716
734
  },
735
+ ios: function() {
736
+ var
737
+ userAgent = navigator.userAgent,
738
+ isIOS = regExp.ios.test(userAgent)
739
+ ;
740
+ if(isIOS) {
741
+ module.verbose('Browser was found to be iOS', userAgent);
742
+ return true;
743
+ }
744
+ else {
745
+ return false;
746
+ }
747
+ },
717
748
  mobile: function() {
718
749
  var
719
750
  userAgent = navigator.userAgent,
720
- mobileRegExp = /Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune/,
721
- isMobile = mobileRegExp.test(userAgent)
751
+ isMobile = regExp.mobile.test(userAgent)
722
752
  ;
723
753
  if(isMobile) {
724
754
  module.verbose('Browser was found to be mobile', userAgent);
@@ -976,6 +1006,7 @@ $.fn.sidebar.settings = {
976
1006
  active : 'active',
977
1007
  animating : 'animating',
978
1008
  dimmed : 'dimmed',
1009
+ ios : 'ios',
979
1010
  pushable : 'pushable',
980
1011
  pushed : 'pushed',
981
1012
  right : 'right',
@@ -992,6 +1023,11 @@ $.fn.sidebar.settings = {
992
1023
  sidebar : '.ui.sidebar'
993
1024
  },
994
1025
 
1026
+ regExp: {
1027
+ ios : /(iPad|iPhone|iPod)/g,
1028
+ mobile : /Mobile|iP(hone|od|ad)|Android|BlackBerry|IEMobile|Kindle|NetFront|Silk-Accelerated|(hpw|web)OS|Fennec|Minimo|Opera M(obi|ini)|Blazer|Dolfin|Dolphin|Skyfire|Zune/g
1029
+ },
1030
+
995
1031
  error : {
996
1032
  method : 'The method you called is not defined.',
997
1033
  pusher : 'Had to add pusher element. For optimal performance make sure body content is inside a pusher element',
@@ -151,7 +151,7 @@ $.fn.transition = function() {
151
151
  module.set.animating(settings.animation);
152
152
  }
153
153
  else {
154
- module.error(error.noAnimation, settings.animation);
154
+ module.error(error.noAnimation, settings.animation, element);
155
155
  }
156
156
  },
157
157
 
@@ -416,6 +416,7 @@ $.fn.video = function(parameters) {
416
416
  return false;
417
417
  }
418
418
  else {
419
+ module.error(error.method, query);
419
420
  return false;
420
421
  }
421
422
  });
@@ -50,12 +50,13 @@
50
50
  Field
51
51
  ---------------------*/
52
52
 
53
+ .ui.form .fields .field,
53
54
  .ui.form .field {
54
55
  clear: both;
55
56
  margin: @fieldMargin;
56
57
  }
57
- .ui.form .fields:last-child .field,
58
- .ui.form :not(.fields) .field:last-child {
58
+ .ui.form .fields:last-child,
59
+ .ui.form .field:last-child {
59
60
  margin-bottom: 0em;
60
61
  }
61
62
 
@@ -675,7 +676,8 @@
675
676
  .ui.form .four.fields > .field,
676
677
  .ui.form .five.fields > .fields,
677
678
  .ui.form .five.fields > .field {
678
- width: @oneColumn;
679
+ width: @oneColumn !important;
680
+ margin: @fieldMargin;
679
681
  padding-left: 0%;
680
682
  padding-right: 0%;
681
683
  }
@@ -777,7 +779,7 @@
777
779
  .ui.form .fields > .fourteen.wide.field,
778
780
  .ui.form .fields > .fifteen.wide.field,
779
781
  .ui.form .fields > .sixteen.wide.field {
780
- width: @oneColumn;
782
+ width: @oneColumn !important;
781
783
  padding-left: 0%;
782
784
  padding-right: 0%;
783
785
  }
@@ -177,7 +177,7 @@
177
177
  margin-right: 0em;
178
178
  }
179
179
  }
180
- @media only screen and (min-width: @tabletBreakpoint) {
180
+ @media only screen and (min-width: @tabletBreakpoint ) {
181
181
  .ui.page.grid {
182
182
  width: @tabletWidth;
183
183
  margin-left: @tabletMargin;
@@ -449,106 +449,107 @@
449
449
  -----------------------*/
450
450
 
451
451
  /* Mobile Sizing Combinations */
452
- .ui.grid > .row > [class*="one wide mobile"].column,
453
- .ui.grid > .column.row > [class*="one wide mobile"].column,
454
- .ui.grid > [class*="one wide mobile"].column,
455
- .ui.column.grid > [class*="one wide mobile"].column {
456
- width: @oneWide !important;
457
- }
458
- .ui.grid > .row > [class*="two wide mobile"].column,
459
- .ui.grid > .column.row > [class*="two wide mobile"].column,
460
- .ui.grid > [class*="two wide mobile"].column,
461
- .ui.column.grid > [class*="two wide mobile"].column {
462
- width: @twoWide !important;
463
- }
464
- .ui.grid > .row > [class*="three wide mobile"].column,
465
- .ui.grid > .column.row > [class*="three wide mobile"].column,
466
- .ui.grid > [class*="three wide mobile"].column,
467
- .ui.column.grid > [class*="three wide mobile"].column {
468
- width: @threeWide !important;
469
- }
470
- .ui.grid > .row > [class*="four wide mobile"].column,
471
- .ui.grid > .column.row > [class*="four wide mobile"].column,
472
- .ui.grid > [class*="four wide mobile"].column,
473
- .ui.column.grid > [class*="four wide mobile"].column {
474
- width: @fourWide !important;
475
- }
476
- .ui.grid > .row > [class*="five wide mobile"].column,
477
- .ui.grid > .column.row > [class*="five wide mobile"].column,
478
- .ui.grid > [class*="five wide mobile"].column,
479
- .ui.column.grid > [class*="five wide mobile"].column {
480
- width: @fiveWide !important;
481
- }
482
- .ui.grid > .row > [class*="six wide mobile"].column,
483
- .ui.grid > .column.row > [class*="six wide mobile"].column,
484
- .ui.grid > [class*="six wide mobile"].column,
485
- .ui.column.grid > [class*="six wide mobile"].column {
486
- width: @sixWide !important;
487
- }
488
- .ui.grid > .row > [class*="seven wide mobile"].column,
489
- .ui.grid > .column.row > [class*="seven wide mobile"].column,
490
- .ui.grid > [class*="seven wide mobile"].column,
491
- .ui.column.grid > [class*="seven wide mobile"].column {
492
- width: @sevenWide !important;
493
- }
494
- .ui.grid > .row > [class*="eight wide mobile"].column,
495
- .ui.grid > .column.row > [class*="eight wide mobile"].column,
496
- .ui.grid > [class*="eight wide mobile"].column,
497
- .ui.column.grid > [class*="eight wide mobile"].column {
498
- width: @eightWide !important;
499
- }
500
- .ui.grid > .row > [class*="nine wide mobile"].column,
501
- .ui.grid > .column.row > [class*="nine wide mobile"].column,
502
- .ui.grid > [class*="nine wide mobile"].column,
503
- .ui.column.grid > [class*="nine wide mobile"].column {
504
- width: @nineWide !important;
505
- }
506
- .ui.grid > .row > [class*="ten wide mobile"].column,
507
- .ui.grid > .column.row > [class*="ten wide mobile"].column,
508
- .ui.grid > [class*="ten wide mobile"].column,
509
- .ui.column.grid > [class*="ten wide mobile"].column {
510
- width: @tenWide !important;
511
- }
512
- .ui.grid > .row > [class*="eleven wide mobile"].column,
513
- .ui.grid > .column.row > [class*="eleven wide mobile"].column,
514
- .ui.grid > [class*="eleven wide mobile"].column,
515
- .ui.column.grid > [class*="eleven wide mobile"].column {
516
- width: @elevenWide !important;
517
- }
518
- .ui.grid > .row > [class*="twelve wide mobile"].column,
519
- .ui.grid > .column.row > [class*="twelve wide mobile"].column,
520
- .ui.grid > [class*="twelve wide mobile"].column,
521
- .ui.column.grid > [class*="twelve wide mobile"].column {
522
- width: @twelveWide !important;
523
- }
524
- .ui.grid > .row > [class*="thirteen wide mobile"].column,
525
- .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
526
- .ui.grid > [class*="thirteen wide mobile"].column,
527
- .ui.column.grid > [class*="thirteen wide mobile"].column {
528
- width: @thirteenWide !important;
529
- }
530
- .ui.grid > .row > [class*="fourteen wide mobile"].column,
531
- .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
532
- .ui.grid > [class*="fourteen wide mobile"].column,
533
- .ui.column.grid > [class*="fourteen wide mobile"].column {
534
- width: @fourteenWide !important;
535
- }
536
- .ui.grid > .row > [class*="fifteen wide mobile"].column,
537
- .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
538
- .ui.grid > [class*="fifteen wide mobile"].column,
539
- .ui.column.grid > [class*="fifteen wide mobile"].column {
540
- width: @fifteenWide !important;
541
- }
542
- .ui.grid > .row > [class*="sixteen wide mobile"].column,
543
- .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
544
- .ui.grid > [class*="sixteen wide mobile"].column,
545
- .ui.column.grid > [class*="sixteen wide mobile"].column {
546
- width: @sixteenWide !important;
452
+ @media only screen and (min-width: @mobileBreakpoint) and (max-width: @largestMobileScreen) {
453
+ .ui.grid > .row > [class*="one wide mobile"].column,
454
+ .ui.grid > .column.row > [class*="one wide mobile"].column,
455
+ .ui.grid > [class*="one wide mobile"].column,
456
+ .ui.column.grid > [class*="one wide mobile"].column {
457
+ width: @oneWide !important;
458
+ }
459
+ .ui.grid > .row > [class*="two wide mobile"].column,
460
+ .ui.grid > .column.row > [class*="two wide mobile"].column,
461
+ .ui.grid > [class*="two wide mobile"].column,
462
+ .ui.column.grid > [class*="two wide mobile"].column {
463
+ width: @twoWide !important;
464
+ }
465
+ .ui.grid > .row > [class*="three wide mobile"].column,
466
+ .ui.grid > .column.row > [class*="three wide mobile"].column,
467
+ .ui.grid > [class*="three wide mobile"].column,
468
+ .ui.column.grid > [class*="three wide mobile"].column {
469
+ width: @threeWide !important;
470
+ }
471
+ .ui.grid > .row > [class*="four wide mobile"].column,
472
+ .ui.grid > .column.row > [class*="four wide mobile"].column,
473
+ .ui.grid > [class*="four wide mobile"].column,
474
+ .ui.column.grid > [class*="four wide mobile"].column {
475
+ width: @fourWide !important;
476
+ }
477
+ .ui.grid > .row > [class*="five wide mobile"].column,
478
+ .ui.grid > .column.row > [class*="five wide mobile"].column,
479
+ .ui.grid > [class*="five wide mobile"].column,
480
+ .ui.column.grid > [class*="five wide mobile"].column {
481
+ width: @fiveWide !important;
482
+ }
483
+ .ui.grid > .row > [class*="six wide mobile"].column,
484
+ .ui.grid > .column.row > [class*="six wide mobile"].column,
485
+ .ui.grid > [class*="six wide mobile"].column,
486
+ .ui.column.grid > [class*="six wide mobile"].column {
487
+ width: @sixWide !important;
488
+ }
489
+ .ui.grid > .row > [class*="seven wide mobile"].column,
490
+ .ui.grid > .column.row > [class*="seven wide mobile"].column,
491
+ .ui.grid > [class*="seven wide mobile"].column,
492
+ .ui.column.grid > [class*="seven wide mobile"].column {
493
+ width: @sevenWide !important;
494
+ }
495
+ .ui.grid > .row > [class*="eight wide mobile"].column,
496
+ .ui.grid > .column.row > [class*="eight wide mobile"].column,
497
+ .ui.grid > [class*="eight wide mobile"].column,
498
+ .ui.column.grid > [class*="eight wide mobile"].column {
499
+ width: @eightWide !important;
500
+ }
501
+ .ui.grid > .row > [class*="nine wide mobile"].column,
502
+ .ui.grid > .column.row > [class*="nine wide mobile"].column,
503
+ .ui.grid > [class*="nine wide mobile"].column,
504
+ .ui.column.grid > [class*="nine wide mobile"].column {
505
+ width: @nineWide !important;
506
+ }
507
+ .ui.grid > .row > [class*="ten wide mobile"].column,
508
+ .ui.grid > .column.row > [class*="ten wide mobile"].column,
509
+ .ui.grid > [class*="ten wide mobile"].column,
510
+ .ui.column.grid > [class*="ten wide mobile"].column {
511
+ width: @tenWide !important;
512
+ }
513
+ .ui.grid > .row > [class*="eleven wide mobile"].column,
514
+ .ui.grid > .column.row > [class*="eleven wide mobile"].column,
515
+ .ui.grid > [class*="eleven wide mobile"].column,
516
+ .ui.column.grid > [class*="eleven wide mobile"].column {
517
+ width: @elevenWide !important;
518
+ }
519
+ .ui.grid > .row > [class*="twelve wide mobile"].column,
520
+ .ui.grid > .column.row > [class*="twelve wide mobile"].column,
521
+ .ui.grid > [class*="twelve wide mobile"].column,
522
+ .ui.column.grid > [class*="twelve wide mobile"].column {
523
+ width: @twelveWide !important;
524
+ }
525
+ .ui.grid > .row > [class*="thirteen wide mobile"].column,
526
+ .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
527
+ .ui.grid > [class*="thirteen wide mobile"].column,
528
+ .ui.column.grid > [class*="thirteen wide mobile"].column {
529
+ width: @thirteenWide !important;
530
+ }
531
+ .ui.grid > .row > [class*="fourteen wide mobile"].column,
532
+ .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
533
+ .ui.grid > [class*="fourteen wide mobile"].column,
534
+ .ui.column.grid > [class*="fourteen wide mobile"].column {
535
+ width: @fourteenWide !important;
536
+ }
537
+ .ui.grid > .row > [class*="fifteen wide mobile"].column,
538
+ .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
539
+ .ui.grid > [class*="fifteen wide mobile"].column,
540
+ .ui.column.grid > [class*="fifteen wide mobile"].column {
541
+ width: @fifteenWide !important;
542
+ }
543
+ .ui.grid > .row > [class*="sixteen wide mobile"].column,
544
+ .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
545
+ .ui.grid > [class*="sixteen wide mobile"].column,
546
+ .ui.column.grid > [class*="sixteen wide mobile"].column {
547
+ width: @sixteenWide !important;
548
+ }
547
549
  }
548
550
 
549
-
550
551
  /* Tablet Sizing Combinations */
551
- @media only screen and (min-width: @tabletBreakpoint) {
552
+ @media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
552
553
  .ui.grid > .row > [class*="one wide tablet"].column,
553
554
  .ui.grid > .column.row > [class*="one wide tablet"].column,
554
555
  .ui.grid > [class*="one wide tablet"].column,
@@ -748,7 +749,7 @@
748
749
  }
749
750
 
750
751
  /* Large Monitor Sizing Combinations */
751
- @media only screen and (min-width: @largeMonitorBreakpoint) {
752
+ @media only screen and (min-width: @largeMonitorBreakpoint) and (max-width: @largestLargeMonitor){
752
753
  .ui.grid > .row > [class*="one wide large screen"].column,
753
754
  .ui.grid > .column.row > [class*="one wide large screen"].column,
754
755
  .ui.grid > [class*="one wide large screen"].column,
@@ -1607,6 +1608,10 @@
1607
1608
  margin: 0em;
1608
1609
  padding: 0em;
1609
1610
  }
1611
+ .ui.stackable.grid .column > .ui.stackable.grid {
1612
+ margin-left: -(@stackableGutter);
1613
+ margin-right: -(@stackableGutter);
1614
+ }
1610
1615
 
1611
1616
  .ui.stackable.celled.grid > .column:not(.row),
1612
1617
  .ui.stackable.divided.grid > .column:not(.row),