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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 983e2bcfc0d0a6d049c6f2df632a809891ca5d2e
4
- data.tar.gz: 2606c51db9e27f37d45ce8666fc48697f3f7f4e6
3
+ metadata.gz: 0ec2b78d3419164b4749e78b8d1cc05b4b1944d4
4
+ data.tar.gz: e597c7409680207b9526838e0c44bd5f9ad760c5
5
5
  SHA512:
6
- metadata.gz: f7c52884d622f5b90c96ed53b93349b3221935748f0ae59700bf386ea0408b294ba41fb8c0b09fec33bfce27a8a546252e643f1f328f57fd8570ac8d0ddb7cba
7
- data.tar.gz: 36bb2201db652a6776402ae5cb11749091cc3e39480e5b1d5507ced960e1070731a2e230e97b4756b17b0a86f05fd2ca8f915350dfccd25e0e17f47d931dd6ec
6
+ metadata.gz: 07a214682c62153bc17da0207b1c5764a094fbf3753e190a0eb092ff78847880bb415d6a53390b771b6fd92fc4a0bd9175fb748344a74814d7463625716e764f
7
+ data.tar.gz: cb4181bb3e417a46d7b5ab4d9e7f09c5a325ae9d6e12ec887063b6c636a00629e5d3eb310b8f57b041d0e4c0ea7a00b07f27b877a2b84d9addbe6dacb8fb7499
data/README.md CHANGED
@@ -15,9 +15,5 @@ Or install it yourself as:
15
15
 
16
16
  $ gem install css-helpers
17
17
 
18
- ## Usage
19
-
20
- $ color-cop
21
-
22
18
  -------------
23
- Brought to you by [Paul Farino](https://github.com/paulfarino)
19
+ Brought to you by [Paul Farino](https://github.com/paulfarino)
Binary file
@@ -1,3 +1,3 @@
1
1
  module CssHelpers
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -1,35 +1,10 @@
1
1
  // Z-Index Scale
2
2
  // --------------------------
3
- .zIndex-1 {
4
- z-index: $zIndex-1;
5
- }
6
- .zIndex-2 {
7
- z-index: $zIndex-2;
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.1
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: 2016-08-28 00:00:00.000000000 Z
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.5.1
133
+ rubygems_version: 2.6.10
133
134
  signing_key:
134
135
  specification_version: 4
135
136
  summary: CSS Helpers