css_helpers 1.0.1 → 1.0.2
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/README.md +1 -5
- data/css_helpers-1.0.1.gem +0 -0
- data/lib/css_helpers/version.rb +1 -1
- data/vendor/assets/stylesheets/_z-index.scss +6 -31
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ec2b78d3419164b4749e78b8d1cc05b4b1944d4
|
|
4
|
+
data.tar.gz: e597c7409680207b9526838e0c44bd5f9ad760c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07a214682c62153bc17da0207b1c5764a094fbf3753e190a0eb092ff78847880bb415d6a53390b771b6fd92fc4a0bd9175fb748344a74814d7463625716e764f
|
|
7
|
+
data.tar.gz: cb4181bb3e417a46d7b5ab4d9e7f09c5a325ae9d6e12ec887063b6c636a00629e5d3eb310b8f57b041d0e4c0ea7a00b07f27b877a2b84d9addbe6dacb8fb7499
|
data/README.md
CHANGED
|
Binary file
|
data/lib/css_helpers/version.rb
CHANGED
|
@@ -1,35 +1,10 @@
|
|
|
1
1
|
// Z-Index Scale
|
|
2
2
|
// --------------------------
|
|
3
|
-
|
|
4
|
-
z-index
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
.zIndex-3 {
|
|
10
|
-
z-index: $zIndex-3;
|
|
11
|
-
}
|
|
12
|
-
.zIndex-4 {
|
|
13
|
-
z-index: $zIndex-4;
|
|
14
|
-
}
|
|
15
|
-
.zIndex-5 {
|
|
16
|
-
z-index: $zIndex-5;
|
|
17
|
-
}
|
|
18
|
-
.zIndex-6 {
|
|
19
|
-
z-index: $zIndex-6;
|
|
20
|
-
}
|
|
21
|
-
.zIndex-7 {
|
|
22
|
-
z-index: $zIndex-7;
|
|
23
|
-
}
|
|
24
|
-
.zIndex-8 {
|
|
25
|
-
z-index: $zIndex-8;
|
|
26
|
-
}
|
|
27
|
-
.zIndex-9 {
|
|
28
|
-
z-index: $zIndex-9;
|
|
29
|
-
}
|
|
30
|
-
.zIndex-10 {
|
|
31
|
-
z-index: $zIndex-10;
|
|
32
|
-
}
|
|
3
|
+
@for $i from 1 through 10 {
|
|
4
|
+
.z-index-#{$i} {
|
|
5
|
+
z-index: #{$i*1000};
|
|
6
|
+
}
|
|
7
|
+
}
|
|
33
8
|
|
|
34
9
|
|
|
35
10
|
// Z-Index Depth
|
|
@@ -60,4 +35,4 @@
|
|
|
60
35
|
|
|
61
36
|
.z-depth-5 {
|
|
62
37
|
box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2),
|
|
63
|
-
}
|
|
38
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: css_helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Farino
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -97,6 +97,7 @@ files:
|
|
|
97
97
|
- bin/console
|
|
98
98
|
- bin/setup
|
|
99
99
|
- css_helpers-1.0.0.gem
|
|
100
|
+
- css_helpers-1.0.1.gem
|
|
100
101
|
- css_helpers.gemspec
|
|
101
102
|
- lib/css_helpers.rb
|
|
102
103
|
- lib/css_helpers/version.rb
|
|
@@ -129,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
129
130
|
version: '0'
|
|
130
131
|
requirements: []
|
|
131
132
|
rubyforge_project:
|
|
132
|
-
rubygems_version: 2.
|
|
133
|
+
rubygems_version: 2.6.10
|
|
133
134
|
signing_key:
|
|
134
135
|
specification_version: 4
|
|
135
136
|
summary: CSS Helpers
|