compass-capucine 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/VERSION +1 -1
- data/compass-capucine.gemspec +1 -1
- data/examples/css_generated/all.css +11 -0
- data/examples/css_generated/ie6.css +11 -0
- data/examples/css_generated/ie7.css +12 -0
- data/examples/index.html +2 -1
- data/examples/sass/_helpers.scss +6 -0
- data/stylesheets/compass-capucine/_helpers.scss +6 -0
- metadata +2 -2
data/README.md
CHANGED
@@ -76,12 +76,12 @@ This will import that :
|
|
76
76
|
- `pressed-effect ( $top_margin, $left_margin, $right_margin )`
|
77
77
|
- `vertical-gradient ( $top_color, $bottom_color )`
|
78
78
|
- `smart-text-shadow ( $color, $pixels )`
|
79
|
+
- `rgba-full ( $color )`
|
79
80
|
|
80
81
|
### Box
|
81
82
|
|
82
83
|
- `box ( $width, $height, $display )`
|
83
84
|
- `circle ( $diam )`
|
84
|
-
- `centerX`
|
85
85
|
- `centerXY ( $width, $heigh, $position )`
|
86
86
|
- `max-width ( $max )`
|
87
87
|
- `min-max-width ( $min, $max )`
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.2
|
data/compass-capucine.gemspec
CHANGED
@@ -134,3 +134,14 @@
|
|
134
134
|
text-align: center;
|
135
135
|
padding: 20px;
|
136
136
|
}
|
137
|
+
|
138
|
+
.rgba {
|
139
|
+
background: rgba(255, 206, 0, 0.3);
|
140
|
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 206, 0, 0.3)), color-stop(100%, rgba(255, 206, 0, 0.3)));
|
141
|
+
background-image: -webkit-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
142
|
+
background-image: -moz-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
143
|
+
background-image: -o-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
144
|
+
background-image: -ms-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
145
|
+
background-image: linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
146
|
+
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#4DFFCE00', endColorstr='#4DFFCE00');
|
147
|
+
}
|
@@ -138,3 +138,14 @@
|
|
138
138
|
text-align: center;
|
139
139
|
padding: 20px;
|
140
140
|
}
|
141
|
+
|
142
|
+
.rgba {
|
143
|
+
background: rgba(255, 206, 0, 0.3);
|
144
|
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 206, 0, 0.3)), color-stop(100%, rgba(255, 206, 0, 0.3)));
|
145
|
+
background-image: -webkit-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
146
|
+
background-image: -moz-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
147
|
+
background-image: -o-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
148
|
+
background-image: -ms-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
149
|
+
background-image: linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
150
|
+
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#4DFFCE00', endColorstr='#4DFFCE00');
|
151
|
+
}
|
@@ -135,3 +135,15 @@
|
|
135
135
|
text-align: center;
|
136
136
|
padding: 20px;
|
137
137
|
}
|
138
|
+
|
139
|
+
.rgba {
|
140
|
+
background: rgba(255, 206, 0, 0.3);
|
141
|
+
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 206, 0, 0.3)), color-stop(100%, rgba(255, 206, 0, 0.3)));
|
142
|
+
background-image: -webkit-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
143
|
+
background-image: -moz-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
144
|
+
background-image: -o-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
145
|
+
background-image: -ms-linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
146
|
+
background-image: linear-gradient(rgba(255, 206, 0, 0.3), rgba(255, 206, 0, 0.3));
|
147
|
+
*zoom: 1;
|
148
|
+
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#4DFFCE00', endColorstr='#4DFFCE00');
|
149
|
+
}
|
data/examples/index.html
CHANGED
data/examples/sass/_helpers.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-capucine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -111,7 +111,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
111
111
|
version: '0'
|
112
112
|
segments:
|
113
113
|
- 0
|
114
|
-
hash:
|
114
|
+
hash: 2111762486446732208
|
115
115
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|