less-rails-semantic_ui 1.3.2.0 → 1.4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +1 -1
  3. data/assets/javascripts/semantic_ui/definitions/behaviors/api.js +1 -1
  4. data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +28 -9
  5. data/assets/javascripts/semantic_ui/definitions/modules/modal.js +52 -46
  6. data/assets/javascripts/semantic_ui/definitions/modules/popup.js +5 -1
  7. data/assets/javascripts/semantic_ui/definitions/modules/progress.js +3 -0
  8. data/assets/stylesheets/semantic_ui/definitions/collections/form.less +7 -0
  9. data/assets/stylesheets/semantic_ui/definitions/collections/grid.less +11 -6
  10. data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +6 -5
  11. data/assets/stylesheets/semantic_ui/definitions/elements/button.less +1 -0
  12. data/assets/stylesheets/semantic_ui/definitions/elements/input.less +1 -1
  13. data/assets/stylesheets/semantic_ui/definitions/elements/segment.less +1 -1
  14. data/assets/stylesheets/semantic_ui/definitions/modules/accordion.less +6 -0
  15. data/assets/stylesheets/semantic_ui/definitions/modules/progress.less +37 -31
  16. data/assets/stylesheets/semantic_ui/definitions/modules/sidebar.less +2 -2
  17. data/assets/stylesheets/semantic_ui/themes/default/collections/form.variables +1 -0
  18. data/assets/stylesheets/semantic_ui/themes/default/elements/button.variables +4 -0
  19. data/assets/stylesheets/semantic_ui/themes/default/elements/input.variables +1 -1
  20. data/assets/stylesheets/semantic_ui/themes/default/globals/site.variables +1 -1
  21. data/assets/stylesheets/semantic_ui/themes/default/modules/accordion.variables +2 -1
  22. data/less-rails-semantic_ui.gemspec +1 -1
  23. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b4bc9694d7b286e057ac5041ff408fb9b89c22f
4
- data.tar.gz: d1f7da9da2618b5278e1084d7ce9cde543ffaf36
3
+ metadata.gz: b57ce73a46e525d87a57cd9b4e72f008ae0031a4
4
+ data.tar.gz: 706c945f6b8010709b95c489ecd171cb73c60261
5
5
  SHA512:
6
- metadata.gz: 441dfed03d05a46bdb0e4868b17d2079c6d1fe2b4ce6b007acfda3833124e335d4a6e72e64a5d1a7920578be0bffcf81580ce3cf690a0d4bed89370aea1ed56f
7
- data.tar.gz: cea45f3b9f8e3e4197d8a804424b235524b373d800488448ee384b7c6d787a625fec601d4cb49f753042ec38c439fa42102a39e05605971f696fb78ef69ce799
6
+ metadata.gz: feb94bd4abe3e03fd7d6c531205724a8797bfee0097b80ce0ab7c6d87f3624889f5564af3e825100ea338d8276b992437ec2bbec6118e46a432283b0bdc6abb1
7
+ data.tar.gz: c8f61d63fd20667a0c99de6cd99ac47d1ed0c9537f8243ca1ab2d385c1d3f451f2c3f1acb7159d392279a15246fa212a7f3e3f5df1b95219a227e1fa7763ed6f
data/Appraisals CHANGED
@@ -7,5 +7,5 @@ appraise 'rails41' do
7
7
  end
8
8
 
9
9
  appraise 'rails42' do
10
- gem 'rails', '~> 4.2.0.rc1'
10
+ gem 'rails', '~> 4.2.0'
11
11
  end
@@ -751,7 +751,7 @@ $.api.settings = {
751
751
  name : 'API',
752
752
  namespace : 'api',
753
753
 
754
- debug : false,
754
+ debug : true,
755
755
  verbose : true,
756
756
  performance : true,
757
757
 
@@ -771,9 +771,11 @@ $.fn.dropdown = function(parameters) {
771
771
  },
772
772
  selectValues: function() {
773
773
  var
774
- select = {
775
- values : {}
776
- }
774
+ select = {}
775
+ ;
776
+ select.values = (settings.sortSelect)
777
+ ? {} // properties will be sorted in object when re-accessed
778
+ : [] // properties will keep original order in array
777
779
  ;
778
780
  $module
779
781
  .find('option')
@@ -788,11 +790,27 @@ $.fn.dropdown = function(parameters) {
788
790
  select.placeholder = name;
789
791
  }
790
792
  else {
791
- select.values[value] = name;
793
+ if(settings.sortSelect) {
794
+ select.values[value] = {
795
+ name : name,
796
+ value : value
797
+ };
798
+ }
799
+ else {
800
+ select.values.push({
801
+ name: name,
802
+ value: value
803
+ });
804
+ }
792
805
  }
793
806
  })
794
807
  ;
795
- module.debug('Retrieved values from select', select);
808
+ if(settings.sortSelect) {
809
+ module.debug('Retrieved and sorted values from select', select);
810
+ }
811
+ else {
812
+ module.debug('Retreived values from select', select);
813
+ }
796
814
  return select;
797
815
  },
798
816
  activeItem: function() {
@@ -1476,6 +1494,7 @@ $.fn.dropdown.settings = {
1476
1494
  allowTab : true,
1477
1495
  fullTextSearch : false,
1478
1496
  preserveHTML : true,
1497
+ sortSelect : false,
1479
1498
 
1480
1499
  delay : {
1481
1500
  hide : 300,
@@ -1545,8 +1564,8 @@ $.fn.dropdown.settings.templates = {
1545
1564
  values = select.values || {},
1546
1565
  html = ''
1547
1566
  ;
1548
- $.each(select.values, function(value, name) {
1549
- html += '<div class="item" data-value="' + value + '">' + name + '</div>';
1567
+ $.each(select.values, function(index, option) {
1568
+ html += '<div class="item" data-value="' + option.value + '">' + option.name + '</div>';
1550
1569
  });
1551
1570
  return html;
1552
1571
  },
@@ -1564,8 +1583,8 @@ $.fn.dropdown.settings.templates = {
1564
1583
  html += '<div class="text"></div>';
1565
1584
  }
1566
1585
  html += '<div class="menu">';
1567
- $.each(select.values, function(value, name) {
1568
- html += '<div class="item" data-value="' + value + '">' + name + '</div>';
1586
+ $.each(select.values, function(index, option) {
1587
+ html += '<div class="item" data-value="' + option.value + '">' + option.name + '</div>';
1569
1588
  });
1570
1589
  html += '</div>';
1571
1590
  return html;
@@ -77,30 +77,7 @@ $.fn.modal = function(parameters) {
77
77
  module.verbose('Initializing dimmer', $context);
78
78
 
79
79
  module.create.id();
80
-
81
- if($.fn.dimmer === undefined) {
82
- module.error(error.dimmer);
83
- return;
84
- }
85
-
86
- $dimmable = $context
87
- .dimmer({
88
- debug : settings.debug,
89
- dimmerName : 'modals',
90
- closable : false,
91
- useCSS : true,
92
- duration : {
93
- show : settings.duration,
94
- hide : settings.duration
95
- }
96
- })
97
- ;
98
-
99
- if(settings.detachable) {
100
- $dimmable.dimmer('add content', $module);
101
- }
102
-
103
- $dimmer = $dimmable.dimmer('get dimmer');
80
+ module.create.dimmer();
104
81
  module.refreshModals();
105
82
 
106
83
  module.verbose('Attaching close events', $close);
@@ -118,6 +95,30 @@ $.fn.modal = function(parameters) {
118
95
  },
119
96
 
120
97
  create: {
98
+ dimmer: function() {
99
+ var
100
+ defaultSettings = {
101
+ debug : settings.debug,
102
+ dimmerName : 'modals',
103
+ duration : {
104
+ show : settings.duration,
105
+ hide : settings.duration
106
+ }
107
+ },
108
+ dimmerSettings = $.extend(true, defaultSettings, settings.dimmerSettings)
109
+ ;
110
+ if($.fn.dimmer === undefined) {
111
+ module.error(error.dimmer);
112
+ return;
113
+ }
114
+ module.debug('Creating dimmer with settings', dimmerSettings);
115
+ $dimmable = $context.dimmer(dimmerSettings);
116
+ if(settings.detachable) {
117
+ module.verbose('Modal is detachable, moving content into dimmer');
118
+ $dimmable.dimmer('add content', $module);
119
+ }
120
+ $dimmer = $dimmable.dimmer('get dimmer');
121
+ },
121
122
  id: function() {
122
123
  module.verbose('Creating unique id for element');
123
124
  id = module.get.uniqueID();
@@ -801,36 +802,41 @@ $.fn.modal = function(parameters) {
801
802
 
802
803
  $.fn.modal.settings = {
803
804
 
804
- name : 'Modal',
805
- namespace : 'modal',
805
+ name : 'Modal',
806
+ namespace : 'modal',
806
807
 
807
- debug : false,
808
- verbose : true,
809
- performance : true,
808
+ debug : false,
809
+ verbose : true,
810
+ performance : true,
810
811
 
811
- allowMultiple : false,
812
- detachable : true,
813
- closable : true,
814
- autofocus : true,
812
+ allowMultiple : false,
813
+ detachable : true,
814
+ closable : true,
815
+ autofocus : true,
816
+
817
+ dimmerSettings : {
818
+ closable : false,
819
+ useCSS : true
820
+ },
815
821
 
816
- context : 'body',
822
+ context : 'body',
817
823
 
818
- queue : false,
819
- duration : 500,
820
- easing : 'easeOutExpo',
821
- offset : 0,
822
- transition : 'scale',
824
+ queue : false,
825
+ duration : 500,
826
+ easing : 'easeOutExpo',
827
+ offset : 0,
828
+ transition : 'scale',
823
829
 
824
- padding : 30,
830
+ padding : 30,
825
831
 
826
- onShow : function(){},
827
- onHide : function(){},
832
+ onShow : function(){},
833
+ onHide : function(){},
828
834
 
829
- onVisible : function(){},
830
- onHidden : function(){},
835
+ onVisible : function(){},
836
+ onHidden : function(){},
831
837
 
832
- onApprove : function(){ return true; },
833
- onDeny : function(){ return true; },
838
+ onApprove : function(){ return true; },
839
+ onDeny : function(){ return true; },
834
840
 
835
841
  selector : {
836
842
  close : '.close, .actions .button',
@@ -311,7 +311,9 @@ $.fn.popup = function(parameters) {
311
311
  removePopup: function() {
312
312
  module.debug('Removing popup');
313
313
  $.proxy(settings.onRemove, $popup)(element);
314
- $popup.remove();
314
+ if($popup.size() > 0) {
315
+ $popup.remove();
316
+ }
315
317
  },
316
318
 
317
319
  save: {
@@ -653,6 +655,8 @@ $.fn.popup = function(parameters) {
653
655
  module.error(error.invalidPosition, position);
654
656
  }
655
657
 
658
+ module.debug('Calculated popup positioning values', positioning);
659
+
656
660
  // tentatively place on stage
657
661
  $popup
658
662
  .css(positioning)
@@ -251,6 +251,9 @@ $.fn.progress = function(parameters) {
251
251
  $bar
252
252
  .css('width', value + '%')
253
253
  ;
254
+ $module
255
+ .attr('data-percent', parseInt(value, 10))
256
+ ;
254
257
  }
255
258
  },
256
259
  initials: function() {
@@ -96,6 +96,7 @@
96
96
 
97
97
 
98
98
  .ui.form textarea,
99
+ .ui.form input:not([type]),
99
100
  .ui.form input[type="text"],
100
101
  .ui.form input[type="email"],
101
102
  .ui.form input[type="date"],
@@ -109,6 +110,7 @@
109
110
  vertical-align: top;
110
111
  }
111
112
 
113
+ .ui.form input:not([type]),
112
114
  .ui.form input[type="text"],
113
115
  .ui.form input[type="email"],
114
116
  .ui.form input[type="date"],
@@ -117,6 +119,7 @@
117
119
  .ui.form input[type="number"],
118
120
  .ui.form input[type="url"],
119
121
  .ui.form input[type="tel"] {
122
+ font-family: @inputFont;
120
123
  margin: 0em;
121
124
  outline: none;
122
125
  -webkit-appearance: none;
@@ -294,6 +297,7 @@
294
297
  Focus
295
298
  ---------------------*/
296
299
 
300
+ .ui.form input:not([type]):focus,
297
301
  .ui.form input[type="text"]:focus,
298
302
  .ui.form input[type="email"]:focus,
299
303
  .ui.form input[type="date"]:focus,
@@ -359,6 +363,7 @@
359
363
  }
360
364
 
361
365
  .ui.form .fields.error .field textarea,
366
+ .ui.form .fields.error .field input:not([type]),
362
367
  .ui.form .fields.error .field input[type="text"],
363
368
  .ui.form .fields.error .field input[type="email"],
364
369
  .ui.form .fields.error .field input[type="date"],
@@ -368,6 +373,7 @@
368
373
  .ui.form .fields.error .field input[type="url"],
369
374
  .ui.form .fields.error .field input[type="tel"],
370
375
  .ui.form .field.error textarea,
376
+ .ui.form .field.error input:not([type]),
371
377
  .ui.form .field.error input[type="text"],
372
378
  .ui.form .field.error input[type="email"],
373
379
  .ui.form .field.error input[type="date"],
@@ -383,6 +389,7 @@
383
389
  box-shadow: @inputErrorBoxShadow;
384
390
  }
385
391
  .ui.form .field.error textarea:focus,
392
+ .ui.form .field.error input:not([type]):focus,
386
393
  .ui.form .field.error input[type="text"]:focus,
387
394
  .ui.form .field.error input[type="email"]:focus,
388
395
  .ui.form .field.error input[type="date"]:focus,
@@ -954,11 +954,12 @@
954
954
 
955
955
  .ui.centered.grid,
956
956
  .ui.centered.grid > .row,
957
- .ui.grid .centered.row {
957
+ .ui.grid > .centered.row {
958
958
  text-align: center;
959
959
  }
960
- .ui.centered.grid > .column:not(.aligned),
960
+ .ui.centered.grid > .column:not(.aligned):not(.row),
961
961
  .ui.centered.grid > .row > .column:not(.aligned),
962
+ .ui.centered.grid > .row:not(.centered),
962
963
  .ui.grid .centered.row > .column:not(.aligned) {
963
964
  text-align: left;
964
965
  }
@@ -1587,10 +1588,14 @@
1587
1588
  .ui.stackable.grid {
1588
1589
  display: block !important;
1589
1590
  width: auto;
1590
- margin-left: -(@stackableGutter / 2);
1591
- margin-right: -(@stackableGutter / 2);
1591
+ margin-left: -(@stackableGutter / 2) !important;
1592
+ margin-right: -(@stackableGutter / 2) !important;
1592
1593
  padding: 0em;
1593
1594
  }
1595
+ .ui.stackable.padded.grid:not(.vertically) {
1596
+ margin-left: -(@stackableGutter / 2) !important;
1597
+ margin-right: -(@stackableGutter / 2) !important;
1598
+ }
1594
1599
  .ui.stackable.grid > .row > .wide.column,
1595
1600
  .ui.stackable.grid > .wide.column,
1596
1601
  .ui.stackable.grid > .column.grid > .column,
@@ -1609,8 +1614,8 @@
1609
1614
  padding: 0em;
1610
1615
  }
1611
1616
  .ui.stackable.grid .column > .ui.stackable.grid {
1612
- margin-left: -(@stackableGutter);
1613
- margin-right: -(@stackableGutter);
1617
+ margin-left: -(@stackableGutter) !important;
1618
+ margin-right: -(@stackableGutter) !important;
1614
1619
  }
1615
1620
 
1616
1621
  .ui.stackable.celled.grid > .column:not(.row),
@@ -247,7 +247,7 @@
247
247
  ---------------*/
248
248
 
249
249
  /* Dropdown */
250
- .ui.menu .ui.dropdown.visible {
250
+ .ui.menu .ui.dropdown.item.visible {
251
251
  background: @subtleTransparentBlack;
252
252
  border-bottom-right-radius: 0em;
253
253
  border-bottom-left-radius: 0em;
@@ -472,15 +472,16 @@
472
472
  content: "\f0da";
473
473
  margin-left: 1em;
474
474
  }
475
+ .ui.vertical.menu .active.dropdown.item {
476
+ border-top-right-radius: 0em;
477
+ border-bottom-right-radius: 0em;
478
+ }
475
479
  .ui.vertical.menu .dropdown.item .menu {
476
480
  top: 0% !important;
477
481
  left: 100%;
478
482
  margin: @dropdownMenuOffset 0px 0px @dropdownMenuOffset;
479
483
  box-shadow: @dropdownVerticalBoxShadow;
480
- }
481
- .ui.vertical.menu .dropdown.item.active {
482
- border-top-right-radius: 0em;
483
- border-bottom-right-radius: 0em;
484
+ border-radius: 0em @borderRadius @borderRadius @borderRadius;
484
485
  }
485
486
  .ui.vertical.menu .dropdown.item .menu .item {
486
487
  font-size: 1rem;
@@ -59,6 +59,7 @@
59
59
 
60
60
  user-select: none;
61
61
  transition: @transition;
62
+ will-change: @willChange;
62
63
 
63
64
  -webkit-tap-highlight-color: @tapColor;
64
65
  }
@@ -47,7 +47,7 @@
47
47
  text-align: @textAlign;
48
48
  line-height: @lineHeight;
49
49
 
50
- font-family: @pageFont;
50
+ font-family: @inputFont;
51
51
  padding: @padding;
52
52
 
53
53
  background: @background;
@@ -63,7 +63,7 @@
63
63
  background-color: transparent;
64
64
  border-radius: 0px;
65
65
  border: none;
66
- box-shadow: 0px 1px 0px @borderColor;
66
+ box-shadow: 0px -1px 0px @borderColor inset;
67
67
  }
68
68
  .ui[class*="vertical segment"]:last-child {
69
69
  box-shadow: none;
@@ -216,6 +216,12 @@
216
216
  width: 100%;
217
217
  }
218
218
 
219
+ /*--------------
220
+ Inverted
221
+ ---------------*/
219
222
 
223
+ .ui.inverted.accordion .title:not(.ui) {
224
+ color: @invertedTitleColor;
225
+ }
220
226
 
221
227
  .loadUIOverrides();
@@ -49,20 +49,10 @@
49
49
  }
50
50
 
51
51
  /* Indicating */
52
- .ui.indicating.progress .bar[style^="width: 1%"],
53
- .ui.indicating.progress .bar[style^="width: 2%"],
54
- .ui.indicating.progress .bar[style^="width: 3%"],
55
- .ui.indicating.progress .bar[style^="width: 4%"],
56
- .ui.indicating.progress .bar[style^="width: 5%"],
57
- .ui.indicating.progress .bar[style^="width: 6%"],
58
- .ui.indicating.progress .bar[style^="width: 7%"],
59
- .ui.indicating.progress .bar[style^="width: 8%"],
60
- .ui.indicating.progress .bar[style^="width: 9%"],
61
52
  .ui.indicating.progress .bar[style^="width: 1"],
62
53
  .ui.indicating.progress .bar[style^="width: 2"] {
63
54
  background-color: @indicatingFirstColor;
64
55
  }
65
-
66
56
  .ui.indicating.progress .bar[style^="width: 3"] {
67
57
  background-color: @indicatingSecondColor;
68
58
  }
@@ -82,40 +72,56 @@
82
72
  background-color: @indicatingSixthColor;
83
73
  }
84
74
 
85
- /* Single Digits Last */
86
- .ui.indicating.progress .bar[style^="width: 1%"] + .label,
87
- .ui.indicating.progress .bar[style^="width: 2%"] + .label,
88
- .ui.indicating.progress .bar[style^="width: 3%"] + .label,
89
- .ui.indicating.progress .bar[style^="width: 4%"] + .label,
90
- .ui.indicating.progress .bar[style^="width: 5%"] + .label,
91
- .ui.indicating.progress .bar[style^="width: 6%"] + .label,
92
- .ui.indicating.progress .bar[style^="width: 7%"] + .label,
93
- .ui.indicating.progress .bar[style^="width: 8%"] + .label,
94
- .ui.indicating.progress .bar[style^="width: 9%"] + .label,
95
- .ui.indicating.progress .bar[style^="width: 1"] + .label,
96
- .ui.indicating.progress .bar[style^="width: 2"] + .label {
75
+ /* Indicating Label */
76
+ .ui.indicating.progress[data-percent^="1"] .label,
77
+ .ui.indicating.progress[data-percent^="2"] .label {
97
78
  color: @indicatingFirstColor;
98
79
  }
99
- .ui.indicating.progress .bar[style^="width: 3"] + .label {
80
+ .ui.indicating.progress[data-percent^="3"] .label {
100
81
  color: @indicatingSecondColor;
101
82
  }
102
- .ui.indicating.progress .bar[style^="width: 4"] + .label,
103
- .ui.indicating.progress .bar[style^="width: 5"] + .label {
83
+ .ui.indicating.progress[data-percent^="4"] .label,
84
+ .ui.indicating.progress[data-percent^="5"] .label {
104
85
  color: @indicatingThirdColor;
105
86
  }
106
- .ui.indicating.progress .bar[style^="width: 6"] + .label {
87
+ .ui.indicating.progress[data-percent^="6"] .label {
107
88
  color: @indicatingFourthColor;
108
89
  }
109
- .ui.indicating.progress .bar[style^="width: 7"] + .label,
110
- .ui.indicating.progress .bar[style^="width: 8"] + .label {
90
+ .ui.indicating.progress[data-percent^="7"] .label,
91
+ .ui.indicating.progress[data-percent^="8"] .label {
111
92
  color: @indicatingFifthColor;
112
93
  }
113
- .ui.indicating.progress .bar[style^="width: 9"] + .label,
114
- .ui.indicating.progress .bar[style^="width: 100"] + .label {
94
+ .ui.indicating.progress[data-percent^="9"] .label,
95
+ .ui.indicating.progress[data-percent^="100"] .label {
115
96
  color: @indicatingSixthColor;
116
97
  }
117
98
 
118
- .ui.indicating.progress.success .bar + .label {
99
+ /* Single Digits */
100
+ .ui.indicating.progress .bar[style^="width: 1%"],
101
+ .ui.indicating.progress .bar[style^="width: 2%"],
102
+ .ui.indicating.progress .bar[style^="width: 3%"],
103
+ .ui.indicating.progress .bar[style^="width: 4%"],
104
+ .ui.indicating.progress .bar[style^="width: 5%"],
105
+ .ui.indicating.progress .bar[style^="width: 6%"],
106
+ .ui.indicating.progress .bar[style^="width: 7%"],
107
+ .ui.indicating.progress .bar[style^="width: 8%"],
108
+ .ui.indicating.progress .bar[style^="width: 9%"] {
109
+ background-color: @indicatingFirstColor;
110
+ }
111
+ .ui.indicating.progress[data-percent="1"] .label,
112
+ .ui.indicating.progress[data-percent="2"] .label,
113
+ .ui.indicating.progress[data-percent="3"] .label,
114
+ .ui.indicating.progress[data-percent="4"] .label,
115
+ .ui.indicating.progress[data-percent="5"] .label,
116
+ .ui.indicating.progress[data-percent="6"] .label,
117
+ .ui.indicating.progress[data-percent="7"] .label,
118
+ .ui.indicating.progress[data-percent="8"] .label,
119
+ .ui.indicating.progress[data-percent="9"] .label {
120
+ color: @indicatingFirstColor;
121
+ }
122
+
123
+ /* Indicating Success */
124
+ .ui.indicating.progress.success .label {
119
125
  color: @successHeaderColor;
120
126
  }
121
127
 
@@ -50,8 +50,8 @@
50
50
  z-index: @topLayer;
51
51
  }
52
52
 
53
- /* 3D Rendering */
54
- .ui.sidebar * {
53
+ /* GPU Layers for Child Elements */
54
+ .ui.sidebar > * {
55
55
  backface-visibility: hidden;
56
56
  transform: rotateZ(0deg);
57
57
  }
@@ -25,6 +25,7 @@
25
25
  @labelColor: @textColor;
26
26
 
27
27
  /* Input */
28
+ @inputFont: @pageFont;
28
29
  @inputWidth: 100%;
29
30
  @inputFontSize: 1em;
30
31
  @inputVerticalPadding: 0.78571em;
@@ -63,6 +63,10 @@
63
63
  box-shadow 0.1s @transitionEasing,
64
64
  background 0.1s @transitionEasing
65
65
  ;
66
+ /*
67
+ @willChange: box-shadow, transform, opacity, color, background;
68
+ */
69
+ @willChange: '';
66
70
 
67
71
  /*-------------------
68
72
  Group
@@ -6,7 +6,7 @@
6
6
  Element
7
7
  --------------------*/
8
8
 
9
- @pageFont: "Helvetica Neue", "Helvetica", Arial;
9
+ @inputFont: @pageFont;
10
10
  @verticalPadding: 0.78571em;
11
11
  @horizontalPadding: 1em;
12
12
 
@@ -15,7 +15,7 @@
15
15
  @googleFontSizes : '400,700,400italic,700italic';
16
16
  @googleSubset : 'latin';
17
17
 
18
- @googleProtocol : 'http://';
18
+ @googleProtocol : 'https://';
19
19
  @googleFontRequest : '@{googleFontName}:@{googleFontSizes}&subset=@{googleSubset}';
20
20
 
21
21
  /*-------------------
@@ -97,5 +97,6 @@
97
97
  @styledActiveChildTitleBackground: @styledActiveTitleBackground;
98
98
  @styledActiveChildTitleColor: @styledActiveTitleColor;
99
99
 
100
-
100
+ /* Inverted */
101
+ @invertedTitleColor: @invertedTextColor;
101
102
 
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'less-rails-semantic_ui'
6
- spec.version = '1.3.2.0'
6
+ spec.version = '1.4.1.0'
7
7
  spec.authors = ['Maxim Dobryakov']
8
8
  spec.email = ['maxim.dobryakov@gmail.com']
9
9
  spec.summary = %q{Semantic UI assets for Rails}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less-rails-semantic_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2.0
4
+ version: 1.4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maxim Dobryakov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-18 00:00:00.000000000 Z
11
+ date: 2014-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: less-rails