archetype-base-h5bp 1.0.0.alpha.3 → 1.0.0.alpha.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/stylesheets/archetype/base/_h5bp.scss +13 -13
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c290791c7a81747a6e7921fca354044fc21afd54
|
4
|
+
data.tar.gz: 84133f0e8d38d53412babd3365ca2aa979618d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b4979ccb280897e2cd0555cd78dcd32b4c135c97d3517d3e4b78aae190ff12e8ce18a53e7a1eb382f69a2f64c0d802eeb6c9dc1904aa74f9fcc4ea2598990f4
|
7
|
+
data.tar.gz: 19a9006db3160e3ac34e9a599481094d375439c9efef98a16d257a09f6c33d730d3c1dbc38e99a23dbc4db3a031e62cd1eb4533a64fca65741af4af536e3cc10
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0.alpha.
|
1
|
+
1.0.0.alpha.4
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
// @category base
|
4
4
|
|
5
|
-
@mixin base-h5bp-base
|
5
|
+
@mixin base-h5bp-base {
|
6
6
|
/* ==========================================================================
|
7
7
|
Base styles: opinionated defaults
|
8
8
|
========================================================================== */
|
@@ -50,7 +50,7 @@
|
|
50
50
|
}
|
51
51
|
}
|
52
52
|
|
53
|
-
@mixin base-h5bp-images
|
53
|
+
@mixin base-h5bp-images {
|
54
54
|
/*
|
55
55
|
* Remove the gap between images and the bottom of their containers: h5bp.com/i/440
|
56
56
|
*/
|
@@ -61,7 +61,7 @@
|
|
61
61
|
}
|
62
62
|
|
63
63
|
|
64
|
-
@mixin base-h5bp-fieldset
|
64
|
+
@mixin base-h5bp-fieldset {
|
65
65
|
/*
|
66
66
|
* Remove default fieldset styles.
|
67
67
|
*/
|
@@ -73,7 +73,7 @@
|
|
73
73
|
}
|
74
74
|
}
|
75
75
|
|
76
|
-
@mixin base-h5bp-forms
|
76
|
+
@mixin base-h5bp-forms {
|
77
77
|
/*
|
78
78
|
* Allow only vertical resizing of textareas.
|
79
79
|
*/
|
@@ -83,7 +83,7 @@
|
|
83
83
|
}
|
84
84
|
}
|
85
85
|
|
86
|
-
@mixin base-h5bp-chromeframe
|
86
|
+
@mixin base-h5bp-chromeframe {
|
87
87
|
/* ==========================================================================
|
88
88
|
Chrome Frame prompt
|
89
89
|
========================================================================== */
|
@@ -96,7 +96,7 @@
|
|
96
96
|
}
|
97
97
|
}
|
98
98
|
|
99
|
-
@mixin base-h5bp-helpers
|
99
|
+
@mixin base-h5bp-helpers {
|
100
100
|
/* ==========================================================================
|
101
101
|
Helper classes
|
102
102
|
========================================================================== */
|
@@ -199,7 +199,7 @@
|
|
199
199
|
}
|
200
200
|
}
|
201
201
|
|
202
|
-
@mixin base-h5bp-print
|
202
|
+
@mixin base-h5bp-print {
|
203
203
|
/* ==========================================================================
|
204
204
|
Print styles.
|
205
205
|
Inlined to avoid required HTTP connection: h5bp.com/r
|
@@ -287,21 +287,21 @@
|
|
287
287
|
*/
|
288
288
|
$exclude: -archetype-list($exclude);
|
289
289
|
@if(not index($exclude, h5bp-base)) {
|
290
|
-
@include base-h5bp-base
|
290
|
+
@include base-h5bp-base;
|
291
291
|
}
|
292
292
|
@if(not index($exclude, h5bp-images)) {
|
293
|
-
@include base-h5bp-images
|
293
|
+
@include base-h5bp-images;
|
294
294
|
}
|
295
295
|
@if(not index($exclude, h5bp-forms)) {
|
296
|
-
@include base-h5bp-forms
|
296
|
+
@include base-h5bp-forms;
|
297
297
|
}
|
298
298
|
@if(not index($exclude, h5bp-chromeframe)) {
|
299
|
-
@include base-h5bp-chromeframe
|
299
|
+
@include base-h5bp-chromeframe;
|
300
300
|
}
|
301
301
|
@if(not index($exclude, h5bp-helpers)) {
|
302
|
-
@include base-h5bp-helpers
|
302
|
+
@include base-h5bp-helpers;
|
303
303
|
}
|
304
304
|
@if(not index($exclude, h5bp-print)) {
|
305
|
-
@include base-h5bp-print
|
305
|
+
@include base-h5bp-print;
|
306
306
|
}
|
307
307
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: archetype-base-h5bp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.alpha.
|
4
|
+
version: 1.0.0.alpha.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eugene ONeill
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-08
|
12
|
+
date: 2014-09-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: archetype
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.0.alpha.
|
20
|
+
version: 1.0.0.alpha.4
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.0.0.alpha.
|
27
|
+
version: 1.0.0.alpha.4
|
28
28
|
description: An Archetype extension that provides hooks into using HTML5 Boilerplate's
|
29
29
|
CSS reset
|
30
30
|
email: oneill.eugene@gmail.com
|