purecss-sass 0.6.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/bower.json +2 -1
- data/lib/purecss/sass/version.rb +1 -1
- data/vendor/assets/stylesheets/purecss/_base.scss +1 -1
- data/vendor/assets/stylesheets/purecss/_buttons.scss +61 -5
- data/vendor/assets/stylesheets/purecss/_forms.scss +1 -1
- data/vendor/assets/stylesheets/purecss/_grids-responsive.scss +1 -1
- data/vendor/assets/stylesheets/purecss/_grids.scss +1 -1
- data/vendor/assets/stylesheets/purecss/_menus.scss +20 -5
- data/vendor/assets/stylesheets/purecss/_tables.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 770d7de78fbb6be873bcdef77c9b509781af8f92
|
4
|
+
data.tar.gz: 0606cf40670b58f6acabc22ae69a1a2b83908132
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1af392bc628811236c47409de24c90d8b0dfbd10b24e592f03510ddaa82594ffd1b809fe731a6e5e6190d87b8a5a516abda251b23a132a8ad486cd9bc97c69a2
|
7
|
+
data.tar.gz: 3c8502f61fa3970ce14bb852ae3c55ddb92f5bd53802808345bf42b51ae3a91af576ae2017acb4ca7856c741a5297753c9e97bfe676345d75161a04f7401c0cc
|
data/CHANGELOG.md
CHANGED
data/bower.json
CHANGED
data/lib/purecss/sass/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure v0.6.
|
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.
|
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
|
142
|
-
|
143
|
-
|
144
|
-
|
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;
|
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.
|
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:
|
11
|
+
date: 2017-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|