compass-h5bp 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/compass/h5bp/version.rb +1 -1
- data/stylesheets/h5bp/_media.scss +2 -4
- data/stylesheets/h5bp/_normalize.scss +5 -0
- metadata +4 -4
data/README.md
CHANGED
@@ -63,5 +63,5 @@ License
|
|
63
63
|
HTML5 Boilerplate created by by Paul Irish and Divya Manian
|
64
64
|
http://html5boilerplate.com
|
65
65
|
|
66
|
-
Copyright (c)
|
66
|
+
Copyright (c) 2012 Peter Gumeson
|
67
67
|
See [LICENSE](https://github.com/sporkd/compass-h5bp/blob/master/LICENSE) for full license.
|
data/lib/compass/h5bp/version.rb
CHANGED
@@ -2,14 +2,12 @@
|
|
2
2
|
// Inlined to avoid required HTTP connection: h5bp.com/r
|
3
3
|
|
4
4
|
@mixin h5bp-media {
|
5
|
-
|
6
5
|
@media print {
|
7
|
-
@include media-print;
|
6
|
+
@include h5bp-media-print;
|
8
7
|
}
|
9
|
-
|
10
8
|
}
|
11
9
|
|
12
|
-
@mixin media-print {
|
10
|
+
@mixin h5bp-media-print {
|
13
11
|
* { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } // Black prints faster: h5bp.com/s
|
14
12
|
a, a:visited { text-decoration: underline; }
|
15
13
|
a[href]:after { content: " (" attr(href) ")"; }
|
@@ -15,6 +15,7 @@ $invalid-background-color: #f0dddd !default;
|
|
15
15
|
@mixin h5bp-normalize {
|
16
16
|
@include h5bp-display;
|
17
17
|
@include h5bp-base;
|
18
|
+
@include h5bp-selection;
|
18
19
|
@include h5bp-links;
|
19
20
|
@include h5bp-typography;
|
20
21
|
@include h5bp-lists;
|
@@ -49,6 +50,10 @@ $invalid-background-color: #f0dddd !default;
|
|
49
50
|
|
50
51
|
body, button, input, select, textarea { font-family: sans-serif; color: $font-color; }
|
51
52
|
|
53
|
+
}
|
54
|
+
|
55
|
+
@mixin h5bp-selection {
|
56
|
+
|
52
57
|
// Remove text-shadow in selection highlight: h5bp.com/i
|
53
58
|
// These selection declarations have to be separate
|
54
59
|
// Also: hot pink! (or customize the background color to match your design)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-h5bp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,12 +9,12 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2012-01-11 00:00:00.000000000 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: compass
|
17
|
-
requirement: &
|
17
|
+
requirement: &2152723460 !ruby/object:Gem::Requirement
|
18
18
|
none: false
|
19
19
|
requirements:
|
20
20
|
- - ! '>='
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
version: '0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
|
-
version_requirements: *
|
25
|
+
version_requirements: *2152723460
|
26
26
|
description: ! ' Compass extension of Html5 mixins extracted from v2 of Paul Irish''s
|
27
27
|
Html5 Boilerplate project '
|
28
28
|
email:
|