less-rails-semantic_ui 1.3.2.0 → 1.4.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.
- checksums.yaml +4 -4
- data/Appraisals +1 -1
- data/assets/javascripts/semantic_ui/definitions/behaviors/api.js +1 -1
- data/assets/javascripts/semantic_ui/definitions/modules/dropdown.js +28 -9
- data/assets/javascripts/semantic_ui/definitions/modules/modal.js +52 -46
- data/assets/javascripts/semantic_ui/definitions/modules/popup.js +5 -1
- data/assets/javascripts/semantic_ui/definitions/modules/progress.js +3 -0
- data/assets/stylesheets/semantic_ui/definitions/collections/form.less +7 -0
- data/assets/stylesheets/semantic_ui/definitions/collections/grid.less +11 -6
- data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +6 -5
- data/assets/stylesheets/semantic_ui/definitions/elements/button.less +1 -0
- data/assets/stylesheets/semantic_ui/definitions/elements/input.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/elements/segment.less +1 -1
- data/assets/stylesheets/semantic_ui/definitions/modules/accordion.less +6 -0
- data/assets/stylesheets/semantic_ui/definitions/modules/progress.less +37 -31
- data/assets/stylesheets/semantic_ui/definitions/modules/sidebar.less +2 -2
- data/assets/stylesheets/semantic_ui/themes/default/collections/form.variables +1 -0
- data/assets/stylesheets/semantic_ui/themes/default/elements/button.variables +4 -0
- data/assets/stylesheets/semantic_ui/themes/default/elements/input.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/globals/site.variables +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/modules/accordion.variables +2 -1
- data/less-rails-semantic_ui.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b57ce73a46e525d87a57cd9b4e72f008ae0031a4
|
4
|
+
data.tar.gz: 706c945f6b8010709b95c489ecd171cb73c60261
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: feb94bd4abe3e03fd7d6c531205724a8797bfee0097b80ce0ab7c6d87f3624889f5564af3e825100ea338d8276b992437ec2bbec6118e46a432283b0bdc6abb1
|
7
|
+
data.tar.gz: c8f61d63fd20667a0c99de6cd99ac47d1ed0c9537f8243ca1ab2d385c1d3f451f2c3f1acb7159d392279a15246fa212a7f3e3f5df1b95219a227e1fa7763ed6f
|
data/Appraisals
CHANGED
@@ -771,9 +771,11 @@ $.fn.dropdown = function(parameters) {
|
|
771
771
|
},
|
772
772
|
selectValues: function() {
|
773
773
|
var
|
774
|
-
select = {
|
775
|
-
|
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
|
-
|
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
|
-
|
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(
|
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(
|
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
|
805
|
-
namespace
|
805
|
+
name : 'Modal',
|
806
|
+
namespace : 'modal',
|
806
807
|
|
807
|
-
debug
|
808
|
-
verbose
|
809
|
-
performance
|
808
|
+
debug : false,
|
809
|
+
verbose : true,
|
810
|
+
performance : true,
|
810
811
|
|
811
|
-
allowMultiple
|
812
|
-
detachable
|
813
|
-
closable
|
814
|
-
autofocus
|
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
|
822
|
+
context : 'body',
|
817
823
|
|
818
|
-
queue
|
819
|
-
duration
|
820
|
-
easing
|
821
|
-
offset
|
822
|
-
transition
|
824
|
+
queue : false,
|
825
|
+
duration : 500,
|
826
|
+
easing : 'easeOutExpo',
|
827
|
+
offset : 0,
|
828
|
+
transition : 'scale',
|
823
829
|
|
824
|
-
padding
|
830
|
+
padding : 30,
|
825
831
|
|
826
|
-
onShow
|
827
|
-
onHide
|
832
|
+
onShow : function(){},
|
833
|
+
onHide : function(){},
|
828
834
|
|
829
|
-
onVisible
|
830
|
-
onHidden
|
835
|
+
onVisible : function(){},
|
836
|
+
onHidden : function(){},
|
831
837
|
|
832
|
-
onApprove
|
833
|
-
onDeny
|
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.
|
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)
|
@@ -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;
|
@@ -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
|
-
/*
|
86
|
-
.ui.indicating.progress
|
87
|
-
.ui.indicating.progress
|
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
|
80
|
+
.ui.indicating.progress[data-percent^="3"] .label {
|
100
81
|
color: @indicatingSecondColor;
|
101
82
|
}
|
102
|
-
.ui.indicating.progress
|
103
|
-
.ui.indicating.progress
|
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
|
87
|
+
.ui.indicating.progress[data-percent^="6"] .label {
|
107
88
|
color: @indicatingFourthColor;
|
108
89
|
}
|
109
|
-
.ui.indicating.progress
|
110
|
-
.ui.indicating.progress
|
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
|
114
|
-
.ui.indicating.progress
|
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
|
-
|
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
|
|
@@ -15,7 +15,7 @@
|
|
15
15
|
@googleFontSizes : '400,700,400italic,700italic';
|
16
16
|
@googleSubset : 'latin';
|
17
17
|
|
18
|
-
@googleProtocol : '
|
18
|
+
@googleProtocol : 'https://';
|
19
19
|
@googleFontRequest : '@{googleFontName}:@{googleFontSizes}&subset=@{googleSubset}';
|
20
20
|
|
21
21
|
/*-------------------
|
@@ -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.
|
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.
|
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-
|
11
|
+
date: 2014-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: less-rails
|