less-rails-semantic_ui 1.0.1.0 → 1.1.2.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 (32) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +4 -0
  3. data/README.md +1 -1
  4. data/assets/javascripts/semantic_ui/definitions/behaviors/form.js +1 -1
  5. data/assets/javascripts/semantic_ui/definitions/behaviors/visit.js +0 -3
  6. data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +16 -16
  7. data/assets/javascripts/semantic_ui/definitions/modules/nag.js +0 -3
  8. data/assets/javascripts/semantic_ui/definitions/modules/popup.js +147 -84
  9. data/assets/javascripts/semantic_ui/definitions/modules/progress.js +2 -2
  10. data/assets/javascripts/semantic_ui/definitions/modules/sidebar.js +1 -1
  11. data/assets/javascripts/semantic_ui/definitions/modules/transition.js +95 -36
  12. data/assets/stylesheets/semantic_ui/definitions/collections/grid.less +503 -0
  13. data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +14 -11
  14. data/assets/stylesheets/semantic_ui/definitions/elements/input.less +34 -23
  15. data/assets/stylesheets/semantic_ui/definitions/elements/segment.less +0 -5
  16. data/assets/stylesheets/semantic_ui/definitions/globals/site.less +1 -0
  17. data/assets/stylesheets/semantic_ui/definitions/modules/dropdown.less +6 -0
  18. data/assets/stylesheets/semantic_ui/definitions/modules/progress.less +46 -15
  19. data/assets/stylesheets/semantic_ui/themes/default/collections/form.variables +5 -5
  20. data/assets/stylesheets/semantic_ui/themes/default/collections/menu.variables +1 -2
  21. data/assets/stylesheets/semantic_ui/themes/default/elements/button.variables +1 -1
  22. data/assets/stylesheets/semantic_ui/themes/default/elements/icon.overrides +0 -1
  23. data/assets/stylesheets/semantic_ui/themes/default/elements/input.variables +11 -7
  24. data/assets/stylesheets/semantic_ui/themes/default/elements/step.variables +11 -12
  25. data/assets/stylesheets/semantic_ui/themes/default/modules/dropdown.variables +4 -2
  26. data/assets/stylesheets/semantic_ui/themes/default/modules/popup.variables +4 -4
  27. data/assets/stylesheets/semantic_ui/themes/default/modules/progress.variables +11 -3
  28. data/assets/stylesheets/semantic_ui/themes/default/modules/search.variables +1 -1
  29. data/assets/stylesheets/semantic_ui/themes/flat/collections/form.variables +2 -2
  30. data/assets/stylesheets/semantic_ui/themes/raised/elements/button.variables +1 -0
  31. data/less-rails-semantic_ui.gemspec +1 -1
  32. metadata +3 -3
@@ -19,13 +19,13 @@ $.fn.progress = function(parameters) {
19
19
 
20
20
  moduleSelector = $allModules.selector || '',
21
21
 
22
- hasTouch = ('ontouchstart' in document.documentElement),
23
22
  time = new Date().getTime(),
24
23
  performance = [],
25
24
 
26
25
  query = arguments[0],
27
26
  methodInvoked = (typeof query == 'string'),
28
27
  queryArguments = [].slice.call(arguments, 1),
28
+
29
29
  returnedValue
30
30
  ;
31
31
 
@@ -584,7 +584,7 @@ $.fn.progress.settings = {
584
584
  name : 'Progress',
585
585
  namespace : 'progress',
586
586
 
587
- debug : false,
587
+ debug : true,
588
588
  verbose : true,
589
589
  performance : true,
590
590
 
@@ -385,7 +385,7 @@ $.fn.sidebar = function(parameters) {
385
385
  transition = module.get.transition(),
386
386
  $transition = (transition == 'safe')
387
387
  ? $context
388
- : (transition == 'overlay' || module.othersActive())
388
+ : (transition == 'overlay' || module.othersVisible())
389
389
  ? $module
390
390
  : $pusher,
391
391
  animate,
@@ -47,6 +47,7 @@ $.fn.transition = function() {
47
47
  error,
48
48
  className,
49
49
  metadata,
50
+ animationStart,
50
51
  animationEnd,
51
52
  animationName,
52
53
 
@@ -66,7 +67,8 @@ $.fn.transition = function() {
66
67
  className = settings.className;
67
68
  metadata = settings.metadata;
68
69
 
69
- animationEnd = module.get.animationEvent();
70
+ animationStart = module.get.animationStartEvent();
71
+ animationEnd = module.get.animationEndEvent();
70
72
  animationName = module.get.animationName();
71
73
  error = settings.error;
72
74
  namespace = settings.namespace;
@@ -145,7 +147,7 @@ $.fn.transition = function() {
145
147
 
146
148
  }
147
149
  }
148
- if(module.can.animate) {
150
+ if( module.can.animate() ) {
149
151
  module.set.animating(settings.animation);
150
152
  }
151
153
  else {
@@ -174,6 +176,8 @@ $.fn.transition = function() {
174
176
 
175
177
  complete: function () {
176
178
  module.verbose('CSS animation complete', settings.animation);
179
+ module.remove.animationEndCallback();
180
+ module.remove.failSafe();
177
181
  if(!module.is.looping()) {
178
182
  if( module.is.outward() ) {
179
183
  module.verbose('Animation is outward, hiding element');
@@ -205,6 +209,12 @@ $.fn.transition = function() {
205
209
  return true;
206
210
  }
207
211
  return false;
212
+ },
213
+ inlineDisplay: function() {
214
+ var
215
+ style = $module.attr('style') || ''
216
+ ;
217
+ return $.isArray(style.match(/display.*?;/, ''));
208
218
  }
209
219
  },
210
220
 
@@ -227,6 +237,9 @@ $.fn.transition = function() {
227
237
  .addClass(animation)
228
238
  .one(animationEnd + '.complete' + eventNamespace, module.complete)
229
239
  ;
240
+ if(settings.useFailSafe) {
241
+ module.add.failSafe();
242
+ }
230
243
  module.set.duration(settings.duration);
231
244
  $.proxy(settings.onStart, this)();
232
245
  module.debug('Starting tween', animation, $module.attr('class'));
@@ -254,6 +267,7 @@ $.fn.transition = function() {
254
267
  displayType = module.get.displayType(),
255
268
  overrideStyle = style + 'display: ' + displayType + ' !important;'
256
269
  ;
270
+ $module.css('display', '');
257
271
  module.refresh();
258
272
  if( $module.css('display') !== displayType ) {
259
273
  module.verbose('Setting inline visibility to', displayType);
@@ -351,6 +365,16 @@ $.fn.transition = function() {
351
365
  }
352
366
  },
353
367
 
368
+ add: {
369
+ failSafe: function() {
370
+ var
371
+ duration = module.get.duration()
372
+ ;
373
+ module.timer = setTimeout(module.complete, duration + 100);
374
+ module.verbose('Adding fail safe timer', module.timer);
375
+ }
376
+ },
377
+
354
378
  remove: {
355
379
  animating: function() {
356
380
  $module.removeClass(className.animating);
@@ -378,6 +402,12 @@ $.fn.transition = function() {
378
402
  .removeClass(className.outward)
379
403
  ;
380
404
  },
405
+ failSafe: function() {
406
+ module.verbose('Removing fail safe timer', module.timer);
407
+ if(module.timer) {
408
+ clearTimeout(module.timer);
409
+ }
410
+ },
381
411
  hidden: function() {
382
412
  $module.removeClass(className.hidden);
383
413
  },
@@ -440,6 +470,15 @@ $.fn.transition = function() {
440
470
  }
441
471
  return $.fn.transition.settings;
442
472
  },
473
+ duration: function(duration) {
474
+ duration = duration || settings.duration;
475
+ return (typeof settings.duration === 'string')
476
+ ? (duration.indexOf('ms') > -1)
477
+ ? parseFloat(duration)
478
+ : parseFloat(duration) * 1000
479
+ : duration
480
+ ;
481
+ },
443
482
  displayType: function() {
444
483
  if(settings.displayType) {
445
484
  return settings.displayType;
@@ -452,7 +491,7 @@ $.fn.transition = function() {
452
491
  },
453
492
  style: function() {
454
493
  var
455
- style = $module.attr('style') || ''
494
+ style = $module.attr('style') || ''
456
495
  ;
457
496
  return style.replace(/display.*?;/, '');
458
497
  },
@@ -477,7 +516,25 @@ $.fn.transition = function() {
477
516
  }
478
517
  return false;
479
518
  },
480
- animationEvent: function() {
519
+ animationStartEvent: function() {
520
+ var
521
+ element = document.createElement('div'),
522
+ animations = {
523
+ 'animation' :'animationstart',
524
+ 'OAnimation' :'oAnimationStart',
525
+ 'MozAnimation' :'mozAnimationStart',
526
+ 'WebkitAnimation' :'webkitAnimationStart'
527
+ },
528
+ animation
529
+ ;
530
+ for(animation in animations){
531
+ if( element.style[animation] !== undefined ){
532
+ return animations[animation];
533
+ }
534
+ }
535
+ return false;
536
+ },
537
+ animationEndEvent: function() {
481
538
  var
482
539
  element = document.createElement('div'),
483
540
  animations = {
@@ -499,26 +556,16 @@ $.fn.transition = function() {
499
556
  },
500
557
 
501
558
  can: {
502
- animate: function() {
503
- if($module.css(settings.animation) !== 'none') {
504
- module.debug('CSS definition found', $module.css(settings.animation));
505
- return true;
506
- }
507
- else {
508
- module.debug('Unable to find css definition', $module.attr('class'));
509
- return false;
510
- }
511
- },
512
559
  transition: function(forced) {
513
560
  var
514
561
  elementClass = $module.attr('class'),
515
562
  tagName = $module.prop('tagName'),
516
563
  animation = settings.animation,
517
- transitionExists = module.get.transitionExists(settings.animation),
564
+ transitionExists = module.get.transitionExists(animation),
518
565
  $clone,
519
566
  currentAnimation,
520
567
  inAnimation,
521
- animationExists,
568
+ directionExists,
522
569
  displayType
523
570
  ;
524
571
  if( transitionExists === undefined || forced) {
@@ -545,21 +592,30 @@ $.fn.transition = function() {
545
592
  .css('display')
546
593
  ;
547
594
  module.verbose('Determining final display state', displayType);
595
+ $clone.remove();
548
596
  if(currentAnimation != inAnimation) {
549
- module.debug('Transition exists for animation', animation);
550
- animationExists = true;
597
+ module.debug('Direction exists for animation', animation);
598
+ directionExists = true;
599
+ }
600
+ else if(currentAnimation == 'none' || !currentAnimation) {
601
+ module.debug('No animation defined in css', animation);
602
+ return;
551
603
  }
552
604
  else {
553
605
  module.debug('Static animation found', animation, displayType);
554
- animationExists = false;
606
+ directionExists = false;
555
607
  }
556
- $clone.remove();
557
608
  module.save.displayType(displayType);
558
- if(transitionExists === undefined) {
559
- module.save.transitionExists(animation, animationExists);
560
- }
609
+ module.save.transitionExists(animation, directionExists);
561
610
  }
562
- return transitionExists || animationExists;
611
+ return (transitionExists !== undefined)
612
+ ? transitionExists
613
+ : directionExists
614
+ ;
615
+ },
616
+ animate: function() {
617
+ // can transition does not return a value if animation does not exist
618
+ return (module.can.transition() !== undefined);
563
619
  }
564
620
  },
565
621
 
@@ -802,35 +858,38 @@ $.fn.transition.exists = {};
802
858
  $.fn.transition.settings = {
803
859
 
804
860
  // module info
805
- name : 'Transition',
861
+ name : 'Transition',
806
862
 
807
863
  // debug content outputted to console
808
- debug : false,
864
+ debug : false,
809
865
 
810
866
  // verbose debug output
811
- verbose : true,
867
+ verbose : true,
812
868
 
813
869
  // performance data output
814
- performance : true,
870
+ performance : true,
815
871
 
816
872
  // event namespace
817
- namespace : 'transition',
873
+ namespace : 'transition',
818
874
 
819
875
  // animation complete event
820
- onStart : function() {},
821
- onComplete : function() {},
822
- onShow : function() {},
823
- onHide : function() {},
876
+ onStart : function() {},
877
+ onComplete : function() {},
878
+ onShow : function() {},
879
+ onHide : function() {},
880
+
881
+ // whether timeout should be used to ensure callback fires in cases animationend does not
882
+ useFailSafe : false,
824
883
 
825
884
  // whether EXACT animation can occur twice in a row
826
885
  allowRepeats : false,
827
886
 
828
887
  // Override final display type on visible
829
- displayType : false,
888
+ displayType : false,
830
889
 
831
890
  // animation duration
832
- animation : 'fade',
833
- duration : '500ms',
891
+ animation : 'fade',
892
+ duration : '500ms',
834
893
 
835
894
  // new animations will occur after previous ones
836
895
  queue : true,
@@ -444,6 +444,509 @@
444
444
  width: @sixteenWide !important;
445
445
  }
446
446
 
447
+ /*----------------------
448
+ Width per Device
449
+ -----------------------*/
450
+
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;
547
+ }
548
+
549
+
550
+ /* Tablet Sizing Combinations */
551
+ @media only screen and (min-width: @tabletBreakpoint) {
552
+ .ui.grid > .row > [class*="one wide tablet"].column,
553
+ .ui.grid > .column.row > [class*="one wide tablet"].column,
554
+ .ui.grid > [class*="one wide tablet"].column,
555
+ .ui.column.grid > [class*="one wide tablet"].column {
556
+ width: @oneWide !important;
557
+ }
558
+ .ui.grid > .row > [class*="two wide tablet"].column,
559
+ .ui.grid > .column.row > [class*="two wide tablet"].column,
560
+ .ui.grid > [class*="two wide tablet"].column,
561
+ .ui.column.grid > [class*="two wide tablet"].column {
562
+ width: @twoWide !important;
563
+ }
564
+ .ui.grid > .row > [class*="three wide tablet"].column,
565
+ .ui.grid > .column.row > [class*="three wide tablet"].column,
566
+ .ui.grid > [class*="three wide tablet"].column,
567
+ .ui.column.grid > [class*="three wide tablet"].column {
568
+ width: @threeWide !important;
569
+ }
570
+ .ui.grid > .row > [class*="four wide tablet"].column,
571
+ .ui.grid > .column.row > [class*="four wide tablet"].column,
572
+ .ui.grid > [class*="four wide tablet"].column,
573
+ .ui.column.grid > [class*="four wide tablet"].column {
574
+ width: @fourWide !important;
575
+ }
576
+ .ui.grid > .row > [class*="five wide tablet"].column,
577
+ .ui.grid > .column.row > [class*="five wide tablet"].column,
578
+ .ui.grid > [class*="five wide tablet"].column,
579
+ .ui.column.grid > [class*="five wide tablet"].column {
580
+ width: @fiveWide !important;
581
+ }
582
+ .ui.grid > .row > [class*="six wide tablet"].column,
583
+ .ui.grid > .column.row > [class*="six wide tablet"].column,
584
+ .ui.grid > [class*="six wide tablet"].column,
585
+ .ui.column.grid > [class*="six wide tablet"].column {
586
+ width: @sixWide !important;
587
+ }
588
+ .ui.grid > .row > [class*="seven wide tablet"].column,
589
+ .ui.grid > .column.row > [class*="seven wide tablet"].column,
590
+ .ui.grid > [class*="seven wide tablet"].column,
591
+ .ui.column.grid > [class*="seven wide tablet"].column {
592
+ width: @sevenWide !important;
593
+ }
594
+ .ui.grid > .row > [class*="eight wide tablet"].column,
595
+ .ui.grid > .column.row > [class*="eight wide tablet"].column,
596
+ .ui.grid > [class*="eight wide tablet"].column,
597
+ .ui.column.grid > [class*="eight wide tablet"].column {
598
+ width: @eightWide !important;
599
+ }
600
+ .ui.grid > .row > [class*="nine wide tablet"].column,
601
+ .ui.grid > .column.row > [class*="nine wide tablet"].column,
602
+ .ui.grid > [class*="nine wide tablet"].column,
603
+ .ui.column.grid > [class*="nine wide tablet"].column {
604
+ width: @nineWide !important;
605
+ }
606
+ .ui.grid > .row > [class*="ten wide tablet"].column,
607
+ .ui.grid > .column.row > [class*="ten wide tablet"].column,
608
+ .ui.grid > [class*="ten wide tablet"].column,
609
+ .ui.column.grid > [class*="ten wide tablet"].column {
610
+ width: @tenWide !important;
611
+ }
612
+ .ui.grid > .row > [class*="eleven wide tablet"].column,
613
+ .ui.grid > .column.row > [class*="eleven wide tablet"].column,
614
+ .ui.grid > [class*="eleven wide tablet"].column,
615
+ .ui.column.grid > [class*="eleven wide tablet"].column {
616
+ width: @elevenWide !important;
617
+ }
618
+ .ui.grid > .row > [class*="twelve wide tablet"].column,
619
+ .ui.grid > .column.row > [class*="twelve wide tablet"].column,
620
+ .ui.grid > [class*="twelve wide tablet"].column,
621
+ .ui.column.grid > [class*="twelve wide tablet"].column {
622
+ width: @twelveWide !important;
623
+ }
624
+ .ui.grid > .row > [class*="thirteen wide tablet"].column,
625
+ .ui.grid > .column.row > [class*="thirteen wide tablet"].column,
626
+ .ui.grid > [class*="thirteen wide tablet"].column,
627
+ .ui.column.grid > [class*="thirteen wide tablet"].column {
628
+ width: @thirteenWide !important;
629
+ }
630
+ .ui.grid > .row > [class*="fourteen wide tablet"].column,
631
+ .ui.grid > .column.row > [class*="fourteen wide tablet"].column,
632
+ .ui.grid > [class*="fourteen wide tablet"].column,
633
+ .ui.column.grid > [class*="fourteen wide tablet"].column {
634
+ width: @fourteenWide !important;
635
+ }
636
+ .ui.grid > .row > [class*="fifteen wide tablet"].column,
637
+ .ui.grid > .column.row > [class*="fifteen wide tablet"].column,
638
+ .ui.grid > [class*="fifteen wide tablet"].column,
639
+ .ui.column.grid > [class*="fifteen wide tablet"].column {
640
+ width: @fifteenWide !important;
641
+ }
642
+ .ui.grid > .row > [class*="sixteen wide tablet"].column,
643
+ .ui.grid > .column.row > [class*="sixteen wide tablet"].column,
644
+ .ui.grid > [class*="sixteen wide tablet"].column,
645
+ .ui.column.grid > [class*="sixteen wide tablet"].column {
646
+ width: @sixteenWide !important;
647
+ }
648
+ }
649
+
650
+ /* Computer/Desktop Sizing Combinations */
651
+ @media only screen and (min-width: @computerBreakpoint) {
652
+ .ui.grid > .row > [class*="one wide computer"].column,
653
+ .ui.grid > .column.row > [class*="one wide computer"].column,
654
+ .ui.grid > [class*="one wide computer"].column,
655
+ .ui.column.grid > [class*="one wide computer"].column {
656
+ width: @oneWide !important;
657
+ }
658
+ .ui.grid > .row > [class*="two wide computer"].column,
659
+ .ui.grid > .column.row > [class*="two wide computer"].column,
660
+ .ui.grid > [class*="two wide computer"].column,
661
+ .ui.column.grid > [class*="two wide computer"].column {
662
+ width: @twoWide !important;
663
+ }
664
+ .ui.grid > .row > [class*="three wide computer"].column,
665
+ .ui.grid > .column.row > [class*="three wide computer"].column,
666
+ .ui.grid > [class*="three wide computer"].column,
667
+ .ui.column.grid > [class*="three wide computer"].column {
668
+ width: @threeWide !important;
669
+ }
670
+ .ui.grid > .row > [class*="four wide computer"].column,
671
+ .ui.grid > .column.row > [class*="four wide computer"].column,
672
+ .ui.grid > [class*="four wide computer"].column,
673
+ .ui.column.grid > [class*="four wide computer"].column {
674
+ width: @fourWide !important;
675
+ }
676
+ .ui.grid > .row > [class*="five wide computer"].column,
677
+ .ui.grid > .column.row > [class*="five wide computer"].column,
678
+ .ui.grid > [class*="five wide computer"].column,
679
+ .ui.column.grid > [class*="five wide computer"].column {
680
+ width: @fiveWide !important;
681
+ }
682
+ .ui.grid > .row > [class*="six wide computer"].column,
683
+ .ui.grid > .column.row > [class*="six wide computer"].column,
684
+ .ui.grid > [class*="six wide computer"].column,
685
+ .ui.column.grid > [class*="six wide computer"].column {
686
+ width: @sixWide !important;
687
+ }
688
+ .ui.grid > .row > [class*="seven wide computer"].column,
689
+ .ui.grid > .column.row > [class*="seven wide computer"].column,
690
+ .ui.grid > [class*="seven wide computer"].column,
691
+ .ui.column.grid > [class*="seven wide computer"].column {
692
+ width: @sevenWide !important;
693
+ }
694
+ .ui.grid > .row > [class*="eight wide computer"].column,
695
+ .ui.grid > .column.row > [class*="eight wide computer"].column,
696
+ .ui.grid > [class*="eight wide computer"].column,
697
+ .ui.column.grid > [class*="eight wide computer"].column {
698
+ width: @eightWide !important;
699
+ }
700
+ .ui.grid > .row > [class*="nine wide computer"].column,
701
+ .ui.grid > .column.row > [class*="nine wide computer"].column,
702
+ .ui.grid > [class*="nine wide computer"].column,
703
+ .ui.column.grid > [class*="nine wide computer"].column {
704
+ width: @nineWide !important;
705
+ }
706
+ .ui.grid > .row > [class*="ten wide computer"].column,
707
+ .ui.grid > .column.row > [class*="ten wide computer"].column,
708
+ .ui.grid > [class*="ten wide computer"].column,
709
+ .ui.column.grid > [class*="ten wide computer"].column {
710
+ width: @tenWide !important;
711
+ }
712
+ .ui.grid > .row > [class*="eleven wide computer"].column,
713
+ .ui.grid > .column.row > [class*="eleven wide computer"].column,
714
+ .ui.grid > [class*="eleven wide computer"].column,
715
+ .ui.column.grid > [class*="eleven wide computer"].column {
716
+ width: @elevenWide !important;
717
+ }
718
+ .ui.grid > .row > [class*="twelve wide computer"].column,
719
+ .ui.grid > .column.row > [class*="twelve wide computer"].column,
720
+ .ui.grid > [class*="twelve wide computer"].column,
721
+ .ui.column.grid > [class*="twelve wide computer"].column {
722
+ width: @twelveWide !important;
723
+ }
724
+ .ui.grid > .row > [class*="thirteen wide computer"].column,
725
+ .ui.grid > .column.row > [class*="thirteen wide computer"].column,
726
+ .ui.grid > [class*="thirteen wide computer"].column,
727
+ .ui.column.grid > [class*="thirteen wide computer"].column {
728
+ width: @thirteenWide !important;
729
+ }
730
+ .ui.grid > .row > [class*="fourteen wide computer"].column,
731
+ .ui.grid > .column.row > [class*="fourteen wide computer"].column,
732
+ .ui.grid > [class*="fourteen wide computer"].column,
733
+ .ui.column.grid > [class*="fourteen wide computer"].column {
734
+ width: @fourteenWide !important;
735
+ }
736
+ .ui.grid > .row > [class*="fifteen wide computer"].column,
737
+ .ui.grid > .column.row > [class*="fifteen wide computer"].column,
738
+ .ui.grid > [class*="fifteen wide computer"].column,
739
+ .ui.column.grid > [class*="fifteen wide computer"].column {
740
+ width: @fifteenWide !important;
741
+ }
742
+ .ui.grid > .row > [class*="sixteen wide computer"].column,
743
+ .ui.grid > .column.row > [class*="sixteen wide computer"].column,
744
+ .ui.grid > [class*="sixteen wide computer"].column,
745
+ .ui.column.grid > [class*="sixteen wide computer"].column {
746
+ width: @sixteenWide !important;
747
+ }
748
+ }
749
+
750
+ /* Large Monitor Sizing Combinations */
751
+ @media only screen and (min-width: @largeMonitorBreakpoint) {
752
+ .ui.grid > .row > [class*="one wide large screen"].column,
753
+ .ui.grid > .column.row > [class*="one wide large screen"].column,
754
+ .ui.grid > [class*="one wide large screen"].column,
755
+ .ui.column.grid > [class*="one wide large screen"].column {
756
+ width: @oneWide !important;
757
+ }
758
+ .ui.grid > .row > [class*="two wide large screen"].column,
759
+ .ui.grid > .column.row > [class*="two wide large screen"].column,
760
+ .ui.grid > [class*="two wide large screen"].column,
761
+ .ui.column.grid > [class*="two wide large screen"].column {
762
+ width: @twoWide !important;
763
+ }
764
+ .ui.grid > .row > [class*="three wide large screen"].column,
765
+ .ui.grid > .column.row > [class*="three wide large screen"].column,
766
+ .ui.grid > [class*="three wide large screen"].column,
767
+ .ui.column.grid > [class*="three wide large screen"].column {
768
+ width: @threeWide !important;
769
+ }
770
+ .ui.grid > .row > [class*="four wide large screen"].column,
771
+ .ui.grid > .column.row > [class*="four wide large screen"].column,
772
+ .ui.grid > [class*="four wide large screen"].column,
773
+ .ui.column.grid > [class*="four wide large screen"].column {
774
+ width: @fourWide !important;
775
+ }
776
+ .ui.grid > .row > [class*="five wide large screen"].column,
777
+ .ui.grid > .column.row > [class*="five wide large screen"].column,
778
+ .ui.grid > [class*="five wide large screen"].column,
779
+ .ui.column.grid > [class*="five wide large screen"].column {
780
+ width: @fiveWide !important;
781
+ }
782
+ .ui.grid > .row > [class*="six wide large screen"].column,
783
+ .ui.grid > .column.row > [class*="six wide large screen"].column,
784
+ .ui.grid > [class*="six wide large screen"].column,
785
+ .ui.column.grid > [class*="six wide large screen"].column {
786
+ width: @sixWide !important;
787
+ }
788
+ .ui.grid > .row > [class*="seven wide large screen"].column,
789
+ .ui.grid > .column.row > [class*="seven wide large screen"].column,
790
+ .ui.grid > [class*="seven wide large screen"].column,
791
+ .ui.column.grid > [class*="seven wide large screen"].column {
792
+ width: @sevenWide !important;
793
+ }
794
+ .ui.grid > .row > [class*="eight wide large screen"].column,
795
+ .ui.grid > .column.row > [class*="eight wide large screen"].column,
796
+ .ui.grid > [class*="eight wide large screen"].column,
797
+ .ui.column.grid > [class*="eight wide large screen"].column {
798
+ width: @eightWide !important;
799
+ }
800
+ .ui.grid > .row > [class*="nine wide large screen"].column,
801
+ .ui.grid > .column.row > [class*="nine wide large screen"].column,
802
+ .ui.grid > [class*="nine wide large screen"].column,
803
+ .ui.column.grid > [class*="nine wide large screen"].column {
804
+ width: @nineWide !important;
805
+ }
806
+ .ui.grid > .row > [class*="ten wide large screen"].column,
807
+ .ui.grid > .column.row > [class*="ten wide large screen"].column,
808
+ .ui.grid > [class*="ten wide large screen"].column,
809
+ .ui.column.grid > [class*="ten wide large screen"].column {
810
+ width: @tenWide !important;
811
+ }
812
+ .ui.grid > .row > [class*="eleven wide large screen"].column,
813
+ .ui.grid > .column.row > [class*="eleven wide large screen"].column,
814
+ .ui.grid > [class*="eleven wide large screen"].column,
815
+ .ui.column.grid > [class*="eleven wide large screen"].column {
816
+ width: @elevenWide !important;
817
+ }
818
+ .ui.grid > .row > [class*="twelve wide large screen"].column,
819
+ .ui.grid > .column.row > [class*="twelve wide large screen"].column,
820
+ .ui.grid > [class*="twelve wide large screen"].column,
821
+ .ui.column.grid > [class*="twelve wide large screen"].column {
822
+ width: @twelveWide !important;
823
+ }
824
+ .ui.grid > .row > [class*="thirteen wide large screen"].column,
825
+ .ui.grid > .column.row > [class*="thirteen wide large screen"].column,
826
+ .ui.grid > [class*="thirteen wide large screen"].column,
827
+ .ui.column.grid > [class*="thirteen wide large screen"].column {
828
+ width: @thirteenWide !important;
829
+ }
830
+ .ui.grid > .row > [class*="fourteen wide large screen"].column,
831
+ .ui.grid > .column.row > [class*="fourteen wide large screen"].column,
832
+ .ui.grid > [class*="fourteen wide large screen"].column,
833
+ .ui.column.grid > [class*="fourteen wide large screen"].column {
834
+ width: @fourteenWide !important;
835
+ }
836
+ .ui.grid > .row > [class*="fifteen wide large screen"].column,
837
+ .ui.grid > .column.row > [class*="fifteen wide large screen"].column,
838
+ .ui.grid > [class*="fifteen wide large screen"].column,
839
+ .ui.column.grid > [class*="fifteen wide large screen"].column {
840
+ width: @fifteenWide !important;
841
+ }
842
+ .ui.grid > .row > [class*="sixteen wide large screen"].column,
843
+ .ui.grid > .column.row > [class*="sixteen wide large screen"].column,
844
+ .ui.grid > [class*="sixteen wide large screen"].column,
845
+ .ui.column.grid > [class*="sixteen wide large screen"].column {
846
+ width: @sixteenWide !important;
847
+ }
848
+ }
849
+
850
+ /* Widescreen Sizing Combinations */
851
+ @media only screen and (min-width: @widescreenMonitorBreakpoint) {
852
+ .ui.grid > .row > [class*="one wide widescreen"].column,
853
+ .ui.grid > .column.row > [class*="one wide widescreen"].column,
854
+ .ui.grid > [class*="one wide widescreen"].column,
855
+ .ui.column.grid > [class*="one wide widescreen"].column {
856
+ width: @oneWide !important;
857
+ }
858
+ .ui.grid > .row > [class*="two wide widescreen"].column,
859
+ .ui.grid > .column.row > [class*="two wide widescreen"].column,
860
+ .ui.grid > [class*="two wide widescreen"].column,
861
+ .ui.column.grid > [class*="two wide widescreen"].column {
862
+ width: @twoWide !important;
863
+ }
864
+ .ui.grid > .row > [class*="three wide widescreen"].column,
865
+ .ui.grid > .column.row > [class*="three wide widescreen"].column,
866
+ .ui.grid > [class*="three wide widescreen"].column,
867
+ .ui.column.grid > [class*="three wide widescreen"].column {
868
+ width: @threeWide !important;
869
+ }
870
+ .ui.grid > .row > [class*="four wide widescreen"].column,
871
+ .ui.grid > .column.row > [class*="four wide widescreen"].column,
872
+ .ui.grid > [class*="four wide widescreen"].column,
873
+ .ui.column.grid > [class*="four wide widescreen"].column {
874
+ width: @fourWide !important;
875
+ }
876
+ .ui.grid > .row > [class*="five wide widescreen"].column,
877
+ .ui.grid > .column.row > [class*="five wide widescreen"].column,
878
+ .ui.grid > [class*="five wide widescreen"].column,
879
+ .ui.column.grid > [class*="five wide widescreen"].column {
880
+ width: @fiveWide !important;
881
+ }
882
+ .ui.grid > .row > [class*="six wide widescreen"].column,
883
+ .ui.grid > .column.row > [class*="six wide widescreen"].column,
884
+ .ui.grid > [class*="six wide widescreen"].column,
885
+ .ui.column.grid > [class*="six wide widescreen"].column {
886
+ width: @sixWide !important;
887
+ }
888
+ .ui.grid > .row > [class*="seven wide widescreen"].column,
889
+ .ui.grid > .column.row > [class*="seven wide widescreen"].column,
890
+ .ui.grid > [class*="seven wide widescreen"].column,
891
+ .ui.column.grid > [class*="seven wide widescreen"].column {
892
+ width: @sevenWide !important;
893
+ }
894
+ .ui.grid > .row > [class*="eight wide widescreen"].column,
895
+ .ui.grid > .column.row > [class*="eight wide widescreen"].column,
896
+ .ui.grid > [class*="eight wide widescreen"].column,
897
+ .ui.column.grid > [class*="eight wide widescreen"].column {
898
+ width: @eightWide !important;
899
+ }
900
+ .ui.grid > .row > [class*="nine wide widescreen"].column,
901
+ .ui.grid > .column.row > [class*="nine wide widescreen"].column,
902
+ .ui.grid > [class*="nine wide widescreen"].column,
903
+ .ui.column.grid > [class*="nine wide widescreen"].column {
904
+ width: @nineWide !important;
905
+ }
906
+ .ui.grid > .row > [class*="ten wide widescreen"].column,
907
+ .ui.grid > .column.row > [class*="ten wide widescreen"].column,
908
+ .ui.grid > [class*="ten wide widescreen"].column,
909
+ .ui.column.grid > [class*="ten wide widescreen"].column {
910
+ width: @tenWide !important;
911
+ }
912
+ .ui.grid > .row > [class*="eleven wide widescreen"].column,
913
+ .ui.grid > .column.row > [class*="eleven wide widescreen"].column,
914
+ .ui.grid > [class*="eleven wide widescreen"].column,
915
+ .ui.column.grid > [class*="eleven wide widescreen"].column {
916
+ width: @elevenWide !important;
917
+ }
918
+ .ui.grid > .row > [class*="twelve wide widescreen"].column,
919
+ .ui.grid > .column.row > [class*="twelve wide widescreen"].column,
920
+ .ui.grid > [class*="twelve wide widescreen"].column,
921
+ .ui.column.grid > [class*="twelve wide widescreen"].column {
922
+ width: @twelveWide !important;
923
+ }
924
+ .ui.grid > .row > [class*="thirteen wide widescreen"].column,
925
+ .ui.grid > .column.row > [class*="thirteen wide widescreen"].column,
926
+ .ui.grid > [class*="thirteen wide widescreen"].column,
927
+ .ui.column.grid > [class*="thirteen wide widescreen"].column {
928
+ width: @thirteenWide !important;
929
+ }
930
+ .ui.grid > .row > [class*="fourteen wide widescreen"].column,
931
+ .ui.grid > .column.row > [class*="fourteen wide widescreen"].column,
932
+ .ui.grid > [class*="fourteen wide widescreen"].column,
933
+ .ui.column.grid > [class*="fourteen wide widescreen"].column {
934
+ width: @fourteenWide !important;
935
+ }
936
+ .ui.grid > .row > [class*="fifteen wide widescreen"].column,
937
+ .ui.grid > .column.row > [class*="fifteen wide widescreen"].column,
938
+ .ui.grid > [class*="fifteen wide widescreen"].column,
939
+ .ui.column.grid > [class*="fifteen wide widescreen"].column {
940
+ width: @fifteenWide !important;
941
+ }
942
+ .ui.grid > .row > [class*="sixteen wide widescreen"].column,
943
+ .ui.grid > .column.row > [class*="sixteen wide widescreen"].column,
944
+ .ui.grid > [class*="sixteen wide widescreen"].column,
945
+ .ui.column.grid > [class*="sixteen wide widescreen"].column {
946
+ width: @sixteenWide !important;
947
+ }
948
+ }
949
+
447
950
  /*----------------------
448
951
  Centered
449
952
  -----------------------*/