less-rails-semantic_ui 1.6.1.0 → 1.6.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.
- checksums.yaml +4 -4
- data/assets/stylesheets/semantic_ui/definitions/collections/menu.less +7 -1
- data/assets/stylesheets/semantic_ui/definitions/elements/button.less +1 -1
- data/assets/stylesheets/semantic_ui/themes/default/globals/site.variables +34 -29
- data/lib/less/rails/semantic_ui/version.rb +1 -1
- data/tasks/update.rake +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5fb0fda1fa0ca263636bcf0a442703fb2dbc906
|
4
|
+
data.tar.gz: 544a8079ba7fcf24105889cd8b13d54d6aec2289
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88c756be257a71355ee21e872b006ced6466ad16c16a5855f61a53b2ef6581f7f167f3cd8fa4f936379c83ec4e07a497fbb8f30d1602b6604a6cced5ff90a25d
|
7
|
+
data.tar.gz: 9d2a7de0cfb80eff00898c81141ce6d02edf3b5ea5241a2e55c9c2104efc4790adbdd9ba64c50dbd4a82e931da4d1b8ba91e8189cbe7b5e6ab33ce9d18610c98
|
@@ -1013,6 +1013,7 @@
|
|
1013
1013
|
box-shadow: none;
|
1014
1014
|
}
|
1015
1015
|
|
1016
|
+
/* Inverted */
|
1016
1017
|
.ui.inverted.text.menu,
|
1017
1018
|
.ui.inverted.text.menu .item,
|
1018
1019
|
.ui.inverted.text.menu .item:hover,
|
@@ -1020,6 +1021,12 @@
|
|
1020
1021
|
background-color: transparent;
|
1021
1022
|
}
|
1022
1023
|
|
1024
|
+
/* Fluid */
|
1025
|
+
.ui.fluid.text.menu {
|
1026
|
+
margin-left: 0em;
|
1027
|
+
margin-right: 0em;
|
1028
|
+
}
|
1029
|
+
|
1023
1030
|
/*--------------
|
1024
1031
|
Icon Only
|
1025
1032
|
---------------*/
|
@@ -1073,7 +1080,6 @@
|
|
1073
1080
|
min-width: 0em;
|
1074
1081
|
}
|
1075
1082
|
|
1076
|
-
|
1077
1083
|
.ui.labeled.icon.menu > .item {
|
1078
1084
|
min-width: @labeledIconMinWidth;
|
1079
1085
|
}
|
@@ -1527,7 +1527,7 @@
|
|
1527
1527
|
.ui.orange.buttons .active.button:active,
|
1528
1528
|
.ui.orange.active.button,
|
1529
1529
|
.ui.orange.button .active.button:active {
|
1530
|
-
background-color: @
|
1530
|
+
background-color: @orangeActive;
|
1531
1531
|
color: @invertedTextColor;
|
1532
1532
|
text-shadow: @invertedTextShadow;
|
1533
1533
|
}
|
@@ -87,14 +87,20 @@
|
|
87
87
|
Sizes
|
88
88
|
--------------------*/
|
89
89
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
@
|
97
|
-
@
|
90
|
+
/*
|
91
|
+
To have sizing resolve to a specified pixel values adjust
|
92
|
+
the numerator to the desired font size and the denominator
|
93
|
+
to the base em size
|
94
|
+
*/
|
95
|
+
|
96
|
+
@miniSize : (10 / 14);
|
97
|
+
@tinySize : (12 / 14);
|
98
|
+
@smallSize : (13 / 14);
|
99
|
+
@mediumSize : (14 / 14);
|
100
|
+
@largeSize : (16 / 14);
|
101
|
+
@bigSize : (18 / 14);
|
102
|
+
@hugeSize : (20 / 14);
|
103
|
+
@massiveSize : (24 / 14);
|
98
104
|
|
99
105
|
/*-------------------
|
100
106
|
Page
|
@@ -192,33 +198,32 @@
|
|
192
198
|
Paths
|
193
199
|
--------------------*/
|
194
200
|
|
195
|
-
/* For source
|
196
|
-
@imagePath :
|
197
|
-
@fontPath :
|
198
|
-
|
201
|
+
/* For source only. Modified in gulp for dist */
|
202
|
+
@imagePath : 'semantic_ui/themes/default/assets/images';
|
203
|
+
@fontPath : 'semantic_ui/themes/default/assets/fonts';
|
199
204
|
|
200
205
|
/*-------------------
|
201
206
|
Em Sizes
|
202
207
|
--------------------*/
|
203
208
|
|
204
209
|
/* Exact pixel values expressed in em */
|
205
|
-
@mini : unit((@miniSize / @
|
206
|
-
@tiny : unit((@tinySize / @
|
207
|
-
@small : unit((@smallSize / @
|
208
|
-
@medium : unit((@mediumSize / @
|
209
|
-
@large : unit((@largeSize / @
|
210
|
-
@big : unit((@bigSize / @
|
211
|
-
@huge : unit((@hugeSize / @
|
212
|
-
@massive : unit((@massiveSize / @
|
213
|
-
|
214
|
-
@relativeMini : unit((@miniSize / @
|
215
|
-
@relativeTiny : unit((@tinySize / @
|
216
|
-
@relativeSmall : unit((@smallSize / @
|
217
|
-
@relativeMedium : unit((@mediumSize / @
|
218
|
-
@relativeLarge : unit((@largeSize / @
|
219
|
-
@relativeBig : unit((@bigSize / @
|
220
|
-
@relativeHuge : unit((@hugeSize / @
|
221
|
-
@relativeMassive : unit((@massiveSize / @
|
210
|
+
@mini : unit( round(@miniSize * @emSize) / @emSize, rem);
|
211
|
+
@tiny : unit( round(@tinySize * @emSize) / @emSize, rem);
|
212
|
+
@small : unit( round(@smallSize * @emSize) / @emSize, rem);
|
213
|
+
@medium : unit( round(@mediumSize * @emSize) / @emSize, rem);
|
214
|
+
@large : unit( round(@largeSize * @emSize) / @emSize, rem);
|
215
|
+
@big : unit( round(@bigSize * @emSize) / @emSize, rem);
|
216
|
+
@huge : unit( round(@hugeSize * @emSize) / @emSize, rem);
|
217
|
+
@massive : unit( round(@massiveSize * @emSize) / @emSize, rem);
|
218
|
+
|
219
|
+
@relativeMini : unit( round(@miniSize * @emSize) / @emSize, em);
|
220
|
+
@relativeTiny : unit( round(@tinySize * @emSize) / @emSize, em);
|
221
|
+
@relativeSmall : unit( round(@smallSize * @emSize) / @emSize, em);
|
222
|
+
@relativeMedium : unit( round(@mediumSize * @emSize) / @emSize, em);
|
223
|
+
@relativeLarge : unit( round(@largeSize * @emSize) / @emSize, em);
|
224
|
+
@relativeBig : unit( round(@bigSize * @emSize) / @emSize, em);
|
225
|
+
@relativeHuge : unit( round(@hugeSize * @emSize) / @emSize, em);
|
226
|
+
@relativeMassive : unit( round(@massiveSize * @emSize) / @emSize, em);
|
222
227
|
|
223
228
|
/*-------------------
|
224
229
|
Icons
|
data/tasks/update.rake
CHANGED
@@ -132,7 +132,7 @@ namespace :update do
|
|
132
132
|
|
133
133
|
def patch_asset_paths
|
134
134
|
patch(File.join(paths.stylesheets, 'themes', '**/*.variables')) do |content|
|
135
|
-
content.gsub(%r{^(@\w+Path\s*:\s*")\.\.\/\.\.(.*";)$}, %q{\1semantic_ui\2})
|
135
|
+
content.gsub(%r{^(@\w+Path\s*:\s*["'])\.\.\/\.\.(.*["'];)$}, %q{\1semantic_ui\2})
|
136
136
|
end
|
137
137
|
end
|
138
138
|
|