purecss-sass 0.6.1 → 0.6.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: b2138fbe034792885a4b1b8ccb2ba90a7a372f2e
4
- data.tar.gz: 3202de3d75d1b3cdc692bc2483e37bc625744b38
3
+ metadata.gz: 770d7de78fbb6be873bcdef77c9b509781af8f92
4
+ data.tar.gz: 0606cf40670b58f6acabc22ae69a1a2b83908132
5
5
  SHA512:
6
- metadata.gz: 6f81524dedcaf55a09e1e1a45ed6a1b440269b55b6c9a56b5186af752014244246f1f7e7f1329ca728268b3b80bf4241512bc5a45f924a709b98818e831bfa59
7
- data.tar.gz: 64c2782f893036f2c8c08fe51284dcaaf844ace566589eae8cfd23ec1f5846f0b425a43caf030ad7d18052a7fa15570f3cdda684a47f3a77a9849157bc4228d9
6
+ metadata.gz: 1af392bc628811236c47409de24c90d8b0dfbd10b24e592f03510ddaa82594ffd1b809fe731a6e5e6190d87b8a5a516abda251b23a132a8ad486cd9bc97c69a2
7
+ data.tar.gz: 3c8502f61fa3970ce14bb852ae3c55ddb92f5bd53802808345bf42b51ae3a91af576ae2017acb4ca7856c741a5297753c9e97bfe676345d75161a04f7401c0cc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.6.2 (2017-01-06)
2
+
3
+ - Update assets to match upstream version
4
+
5
+ Framework version: Pure v0.6.2
6
+
1
7
  ## 0.6.1 (2016-12-14)
2
8
 
3
9
  - Drop Compass support
data/bower.json CHANGED
@@ -22,6 +22,7 @@
22
22
  "Gemfile",
23
23
  "README.md",
24
24
  "Rakefile",
25
- "purecss-sass.gemspec",
25
+ "package.json",
26
+ "purecss-sass.gemspec"
26
27
  ]
27
28
  }
@@ -1,5 +1,5 @@
1
1
  module Purecss
2
2
  module Sass
3
- VERSION = '0.6.1'
3
+ VERSION = '0.6.2'
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
@@ -25,7 +25,45 @@ https://github.com/yahoo/pure/blob/master/LICENSE.md
25
25
  padding: 0;
26
26
  border: 0;
27
27
  }
28
+ }
29
+
30
+ /* Firefox: Get rid of the inner focus border */
31
+
32
+ /* Inherit .pure-g styles */
33
+
34
+ .pure-button-group {
35
+ letter-spacing: -0.31em;
36
+
37
+ /* Webkit: collapse white-space between units */
38
+ *letter-spacing: normal;
39
+
40
+ /* reset IE < 8 */
41
+ *word-spacing: -0.43em;
42
+
43
+ /* IE < 8: collapse white-space between units */
44
+ text-rendering: optimizespeed;
45
+
46
+ /* Webkit: fixes text-rendering: optimizeLegibility */
47
+ }
48
+
49
+ .opera-only :-o-prefocus {
50
+ word-spacing: -0.43em;
51
+ }
52
+
53
+ .pure-button-group {
54
+ word-spacing: -0.43em;
55
+
56
+ .pure-button {
57
+ letter-spacing: normal;
58
+ word-spacing: normal;
59
+ vertical-align: top;
60
+ text-rendering: auto;
61
+ }
62
+ }
28
63
 
64
+ /*csslint outline-none:false*/
65
+
66
+ .pure-button {
29
67
  font-family: inherit;
30
68
  font-size: 100%;
31
69
  padding: 0.5em 1em;
@@ -46,10 +84,6 @@ https://github.com/yahoo/pure/blob/master/LICENSE.md
46
84
  border-radius: 2px;
47
85
  }
48
86
 
49
- /* Firefox: Get rid of the inner focus border */
50
-
51
- /*csslint outline-none:false*/
52
-
53
87
  .pure-button-hover {
54
88
  /* csslint ignore:start */
55
89
  filter: alpha(opacity = 90);
@@ -149,3 +183,25 @@ a {
149
183
  color: #fff;
150
184
  }
151
185
  }
186
+
187
+ /* Button Groups */
188
+
189
+ .pure-button-group .pure-button {
190
+ margin: 0;
191
+ border-radius: 0;
192
+ border-right: 1px solid #111;
193
+
194
+ /* fallback color for rgba() for IE7/8 */
195
+ border-right: 1px solid rgba(0, 0, 0, 0.2);
196
+
197
+ &:first-child {
198
+ border-top-left-radius: 2px;
199
+ border-bottom-left-radius: 2px;
200
+ }
201
+
202
+ &:last-child {
203
+ border-top-right-radius: 2px;
204
+ border-bottom-right-radius: 2px;
205
+ border-right: none;
206
+ }
207
+ }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
@@ -138,12 +138,27 @@ https://github.com/yahoo/pure/blob/master/LICENSE.md
138
138
  margin: .3em 0;
139
139
  }
140
140
 
141
- .pure-menu-horizontal .pure-menu-separator {
142
- width: 1px;
143
- height: 1.3em;
144
- margin: 0 0.3em;
141
+ .pure-menu-horizontal {
142
+ .pure-menu-children .pure-menu-separator {
143
+ background-color: #ccc;
144
+ height: 1px;
145
+ margin: .3em 0;
146
+ }
147
+
148
+ .pure-menu-separator {
149
+ width: 1px;
150
+ height: 1.3em;
151
+ margin: 0 0.3em;
152
+ }
153
+
154
+ .pure-menu-children .pure-menu-separator {
155
+ display: block;
156
+ width: auto;
157
+ }
145
158
  }
146
159
 
160
+ /* Need to reset the separator since submenu is vertical */
161
+
147
162
  .pure-menu-heading {
148
163
  text-transform: uppercase;
149
164
  color: #565d64;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v0.6.1
2
+ Pure v0.6.2
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
5
  https://github.com/yahoo/pure/blob/master/LICENSE.md
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purecss-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Tarasov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-12-14 00:00:00.000000000 Z
11
+ date: 2017-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass