helio 0.0.1.2 → 0.0.1.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40a9e016971dbce17629f1fcb74faaef847a5786
|
4
|
+
data.tar.gz: 77d49abc24db10dba196f7d53eefd51c0f499d99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a5a29c25595b7986f611b75c29f2f4812861404dcc7098445601cec0c8f63b849895a80c296760dd960403431193f1832ad25db321e2d96376042b5a8c778fc
|
7
|
+
data.tar.gz: 29de561b6eeff1a98016ced62fe87f04c79b80cf01f9bc4dbcbc19d4b0b2a6d29b037eb1d377edf257134c10a585dbf331a02226c407cc520be0d775ef73670e
|
@@ -302,3 +302,11 @@
|
|
302
302
|
|
303
303
|
@include border-widths(#{$name}, #{$value});
|
304
304
|
}
|
305
|
+
|
306
|
+
@include border-radiuses(0, 0px);
|
307
|
+
@for $space-index from 1 through length($helio-spaces) {
|
308
|
+
$name: $space-index;
|
309
|
+
$value: nth($helio-spaces, $space-index);
|
310
|
+
|
311
|
+
@include border-radiuses($name, $value);
|
312
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
@mixin opacities($name, $integer) {
|
2
|
+
.opa-#{$name},
|
3
|
+
.opa-#{$name}-hover:hover,
|
4
|
+
.active .opa-#{$name}-active,
|
5
|
+
.active .opa-#{$name}-active:hover {
|
6
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$integer)";
|
7
|
+
filter: alpha(opacity=$integer);
|
8
|
+
-moz-opacity: $integer / 100;
|
9
|
+
-khtml-opacity: $integer / 100;
|
10
|
+
opacity: $integer / 100;
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
@include opacities(0, 0);
|
17
|
+
@include opacities(a, 100);
|
18
|
+
|
19
|
+
@for $fade-index from 1 through length($helio-fades) {
|
20
|
+
$name: $fade-index;
|
21
|
+
$value: nth($helio-fades, $fade-index);
|
22
|
+
|
23
|
+
@include opacities($name, $value);
|
24
|
+
}
|
data/lib/helio/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: helio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul Jovanovic
|
@@ -194,6 +194,7 @@ files:
|
|
194
194
|
- assets/stylesheets/helio/_fonts.scss
|
195
195
|
- assets/stylesheets/helio/_functions.scss
|
196
196
|
- assets/stylesheets/helio/_mixins.scss
|
197
|
+
- assets/stylesheets/helio/_opacities.scss
|
197
198
|
- assets/stylesheets/helio/_spaces.scss
|
198
199
|
- assets/stylesheets/helio/_utilities.scss
|
199
200
|
- assets/stylesheets/helio/_variables.scss
|