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: 48aa92ad620b91211e1c9a1bd118e54a95cfeaaf
4
- data.tar.gz: c2af4d623a2449f856c72514b7bb46ffa444d710
3
+ metadata.gz: b16a2e3e9d482683a69cc603d68af2e0090ed153
4
+ data.tar.gz: 3fb7b3002f3a2e50aebc6c49574536377e37a52e
5
5
  SHA512:
6
- metadata.gz: 7994404d5470db077aeb72d59bd9db47cad54cb57356f83765fd1defd8d47ad1500e8fa06dd8a3438ad117e8aea2493f6079f6ce603d5cf4af5404a190ee0182
7
- data.tar.gz: 97986664bb880593b487f190f5f547cad0cf8090a84ef6a7db587a183d1a77d7a598256d65a5f4c92533b33239bdc937a38175dce9b74d0dcf9bddaca261953c
6
+ metadata.gz: 5adea5ed62aa4585a0a5ea5991844ec7a13e625a9e336ab3ff2d7784b85208cfcd0e638a1c0552e024605b453ad5cc0807dd824ba5be396c45a06ba78c7fa00b
7
+ data.tar.gz: 9b834b4d9adfa69134373cbe41ed4866af62823fe73dc0dfc1701b4653b862f913898304e54c61fbc82db3883fa7edc8a54002c17b5d076ca9aa424f2584070a
@@ -1,3 +1,2 @@
1
- @import "functions/lists"
2
1
  @import "functions/maps"
3
2
  @import "functions/units"
@@ -55,7 +55,7 @@ $devices: (null)
55
55
 
56
56
  @each $item in $device-breakpoints
57
57
  $device: unquote(#{nth($item, 1)})
58
- $devices: append($devices, $device, space)
58
+ $devices: append($devices, $device, space) !global
59
59
 
60
60
 
61
61
  =debug-breakpoints
@@ -1,5 +1,5 @@
1
1
  module ChameleonSass
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.8"
3
3
  DATE = "2014-08-12"
4
4
 
5
5
  class << self
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.6
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