chameleon-sass 0.0.6 → 0.0.8
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b16a2e3e9d482683a69cc603d68af2e0090ed153
|
4
|
+
data.tar.gz: 3fb7b3002f3a2e50aebc6c49574536377e37a52e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5adea5ed62aa4585a0a5ea5991844ec7a13e625a9e336ab3ff2d7784b85208cfcd0e638a1c0552e024605b453ad5cc0807dd824ba5be396c45a06ba78c7fa00b
|
7
|
+
data.tar.gz: 9b834b4d9adfa69134373cbe41ed4866af62823fe73dc0dfc1701b4653b862f913898304e54c61fbc82db3883fa7edc8a54002c17b5d076ca9aa424f2584070a
|
data/lib/chameleon-sass.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chameleon-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Grant
|
@@ -27,7 +27,6 @@ files:
|
|
27
27
|
- assets/stylesheets/config/_base-sizing.sass
|
28
28
|
- assets/stylesheets/config/_breakpoints.scss
|
29
29
|
- assets/stylesheets/defaults/_units.sass
|
30
|
-
- assets/stylesheets/functions/_lists.sass
|
31
30
|
- assets/stylesheets/functions/_maps.sass
|
32
31
|
- assets/stylesheets/functions/_units.scss
|
33
32
|
- assets/stylesheets/helpers/_box.sass
|
@@ -36,7 +35,6 @@ files:
|
|
36
35
|
- assets/stylesheets/mixins/_responsive.sass
|
37
36
|
- assets/stylesheets/objects/_containers.sass
|
38
37
|
- assets/stylesheets/objects/_grid.sass
|
39
|
-
- assets/stylesheets/objects/_list.sass
|
40
38
|
- lib/chameleon-sass.rb
|
41
39
|
homepage: https://github.com/djgrant/chameleon
|
42
40
|
licenses:
|
File without changes
|
@@ -1,79 +0,0 @@
|
|
1
|
-
+placeholders("list-bulletless")
|
2
|
-
margin: 0
|
3
|
-
padding: 0
|
4
|
-
|
5
|
-
li
|
6
|
-
list-style: none
|
7
|
-
|
8
|
-
// Also declare as mixin because +placeholders()
|
9
|
-
// cannot @extend %placeholders in multiple breakpoints
|
10
|
-
|
11
|
-
=prepend-slash
|
12
|
-
&:before
|
13
|
-
content: '/'
|
14
|
-
margin: 0 12px 0 8px
|
15
|
-
font-weight: normal
|
16
|
-
|
17
|
-
=append-slash
|
18
|
-
&:after
|
19
|
-
content: '/'
|
20
|
-
margin: 0 12px 0 8px
|
21
|
-
font-weight: normal
|
22
|
-
|
23
|
-
+placeholders("appended-slash")
|
24
|
-
+append-slash
|
25
|
-
|
26
|
-
+placeholders("prepended-slash")
|
27
|
-
+prepend-slash
|
28
|
-
|
29
|
-
|
30
|
-
+placeholders("list-inline")
|
31
|
-
margin: 0
|
32
|
-
padding: 0
|
33
|
-
|
34
|
-
li
|
35
|
-
display: inline-block
|
36
|
-
list-style: none
|
37
|
-
margin-right: $unit
|
38
|
-
vertical-align: top
|
39
|
-
|
40
|
-
&:last-child
|
41
|
-
margin-right: 0
|
42
|
-
|
43
|
-
|
44
|
-
+placeholders("list-inline--unspaced")
|
45
|
-
li
|
46
|
-
margin-right: 0
|
47
|
-
|
48
|
-
|
49
|
-
+placeholders("list-inline--pipes")
|
50
|
-
li
|
51
|
-
border-right: 1px solid $color-bg-gray-brown
|
52
|
-
padding-right: $unit-small
|
53
|
-
margin-right: $unit-small - rem(4) // inline space
|
54
|
-
|
55
|
-
&:last-child
|
56
|
-
padding-right: 0
|
57
|
-
border-right: none
|
58
|
-
|
59
|
-
|
60
|
-
+placeholders("list-inline--slashes")
|
61
|
-
li
|
62
|
-
margin: 0
|
63
|
-
|
64
|
-
li
|
65
|
-
+prepend-slash
|
66
|
-
|
67
|
-
li:first-child:before
|
68
|
-
content: ''
|
69
|
-
margin: 0
|
70
|
-
|
71
|
-
|
72
|
-
+placeholders("list--stacked")
|
73
|
-
margin: 0
|
74
|
-
padding: 0
|
75
|
-
|
76
|
-
li
|
77
|
-
list-style: none
|
78
|
-
padding: 1rem 0
|
79
|
-
border-bottom: 1px solid #ccc
|