bourbon 1.0.2 → 1.0.3
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.
- data/app/assets/stylesheets/css3/_linear-gradient.scss +3 -2
- data/lib/bourbon/version.rb +1 -1
- data/readme.md +1 -1
- metadata +37 -56
@@ -15,10 +15,11 @@
|
|
15
15
|
}
|
16
16
|
|
17
17
|
$full: compact($G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10);
|
18
|
+
$last-gradient: nth($full, length($full));
|
18
19
|
|
19
20
|
background-color: nth($G1, 1);
|
20
|
-
background-image: -webkit-gradient(linear, left top, left bottom, from($G1), to($
|
21
|
-
background-image: -webkit-linear-gradient($pos, $full);
|
21
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(nth($G1, 1)), to(nth($last-gradient, 1))); /* Saf4, < iOS 5, Android Webkit */
|
22
|
+
background-image: -webkit-linear-gradient($pos, $full); /* Saf5.1+, Chrome */
|
22
23
|
background-image: -moz-linear-gradient($pos, $full);
|
23
24
|
background-image: -ms-linear-gradient($pos, $full);
|
24
25
|
background-image: -o-linear-gradient($pos, $full);
|
data/lib/bourbon/version.rb
CHANGED
data/readme.md
CHANGED
@@ -33,7 +33,7 @@ Import all additional stylesheets from your app/assets/stylesheets directory und
|
|
33
33
|
@import "home";
|
34
34
|
@import "users";
|
35
35
|
|
36
|
-
## Rails 3.0.
|
36
|
+
## Rails 3.0.10 and below
|
37
37
|
For Rails < 3.1 you must run the installation rake task. Please note, you should run this task every time a new version of Bourbon is released.
|
38
38
|
This will copy the Sass files into your project's public/stylesheets/sass directory.
|
39
39
|
|
metadata
CHANGED
@@ -1,22 +1,17 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: bourbon
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.3
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
- 2
|
10
|
-
version: 1.0.2
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Phil LaPier
|
14
9
|
- Chad Mazzola
|
15
10
|
- Matt Jankowski
|
16
11
|
- Nick Quaranto
|
17
12
|
- Jeremy Raines
|
18
13
|
- Mike Burns
|
19
|
-
-
|
14
|
+
- Andrés Mejía
|
20
15
|
- Travis Haynes
|
21
16
|
- Chris Lloyd
|
22
17
|
- Gabe Berke-Williams
|
@@ -24,42 +19,39 @@ authors:
|
|
24
19
|
autorequire:
|
25
20
|
bindir: bin
|
26
21
|
cert_chain: []
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
dependencies:
|
31
|
-
- !ruby/object:Gem::Dependency
|
22
|
+
date: 2011-10-13 00:00:00.000000000Z
|
23
|
+
dependencies:
|
24
|
+
- !ruby/object:Gem::Dependency
|
32
25
|
name: sass
|
33
|
-
|
34
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
requirement: &70198570718480 !ruby/object:Gem::Requirement
|
35
27
|
none: false
|
36
|
-
requirements:
|
37
|
-
- -
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
|
40
|
-
segments:
|
41
|
-
- 3
|
42
|
-
- 1
|
43
|
-
version: "3.1"
|
28
|
+
requirements:
|
29
|
+
- - ! '>='
|
30
|
+
- !ruby/object:Gem::Version
|
31
|
+
version: '3.1'
|
44
32
|
type: :runtime
|
45
|
-
|
46
|
-
|
47
|
-
|
33
|
+
prerelease: false
|
34
|
+
version_requirements: *70198570718480
|
35
|
+
description: ! 'The purpose of Bourbon Vanilla Sass Mixins is to provide a comprehensive
|
36
|
+
framework of
|
37
|
+
|
48
38
|
sass mixins that are designed to be as vanilla as possible. Meaning they
|
39
|
+
|
49
40
|
should not deter from the original CSS syntax. The mixins contain vendor
|
41
|
+
|
50
42
|
specific prefixes for all CSS3 properties for support amongst modern
|
43
|
+
|
51
44
|
browsers. The prefixes also ensure graceful degradation for older browsers
|
45
|
+
|
52
46
|
that support only CSS3 prefixed properties.
|
53
47
|
|
54
|
-
|
48
|
+
'
|
49
|
+
email:
|
55
50
|
- support@thoughtbot.com
|
56
51
|
executables: []
|
57
|
-
|
58
52
|
extensions: []
|
59
|
-
|
60
53
|
extra_rdoc_files: []
|
61
|
-
|
62
|
-
files:
|
54
|
+
files:
|
63
55
|
- .gitignore
|
64
56
|
- Gemfile
|
65
57
|
- Gemfile.lock
|
@@ -96,39 +88,28 @@ files:
|
|
96
88
|
- lib/bourbon/version.rb
|
97
89
|
- lib/tasks/install.rake
|
98
90
|
- readme.md
|
99
|
-
has_rdoc: true
|
100
91
|
homepage: https://github.com/thoughtbot/bourbon
|
101
92
|
licenses: []
|
102
|
-
|
103
93
|
post_install_message:
|
104
94
|
rdoc_options: []
|
105
|
-
|
106
|
-
require_paths:
|
95
|
+
require_paths:
|
107
96
|
- lib
|
108
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
98
|
none: false
|
110
|
-
requirements:
|
111
|
-
- -
|
112
|
-
- !ruby/object:Gem::Version
|
113
|
-
|
114
|
-
|
115
|
-
- 0
|
116
|
-
version: "0"
|
117
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ! '>='
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
118
104
|
none: false
|
119
|
-
requirements:
|
120
|
-
- -
|
121
|
-
- !ruby/object:Gem::Version
|
122
|
-
|
123
|
-
segments:
|
124
|
-
- 0
|
125
|
-
version: "0"
|
105
|
+
requirements:
|
106
|
+
- - ! '>='
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
126
109
|
requirements: []
|
127
|
-
|
128
110
|
rubyforge_project: bourbon
|
129
|
-
rubygems_version: 1.
|
111
|
+
rubygems_version: 1.8.10
|
130
112
|
signing_key:
|
131
113
|
specification_version: 3
|
132
114
|
summary: Bourbon Sass Mixins using SCSS syntax.
|
133
115
|
test_files: []
|
134
|
-
|