stipe 0.0.6.2 → 0.0.6.3
Sign up to get free protection for your applications and to get access to all the features.
- data/readme.md +4 -0
- data/stylesheets/stipe/stipe/_mixins.scss +1 -23
- metadata +2 -2
data/readme.md
CHANGED
@@ -13,6 +13,10 @@ Stipe is a Compass Extension, so Compass is a dependency. You will need to inclu
|
|
13
13
|
|
14
14
|
# Stipe Changelog
|
15
15
|
|
16
|
+
###0.0.6.3
|
17
|
+
|
18
|
+
* Fix `-moz-placeholder` psuedo-selector syntax. Apparently requires two colons.
|
19
|
+
|
16
20
|
###0.0.6.2
|
17
21
|
* Make `push`/`pull` grid mixins accept context arguments. Useful for nested, percentage-based grids.
|
18
22
|
|
@@ -86,7 +86,7 @@ $inset_shadow: em($ih-shadow) em($iv-shadow) em($iblur) em($is-shadow);
|
|
86
86
|
&::-webkit-input-placeholder {
|
87
87
|
color: $placeholder_color;
|
88
88
|
}
|
89
|
-
|
89
|
+
&::-moz-placeholder {
|
90
90
|
color: $placeholder_color;
|
91
91
|
}
|
92
92
|
&:-ms-input-placeholder {
|
@@ -97,28 +97,6 @@ $inset_shadow: em($ih-shadow) em($iv-shadow) em($iblur) em($is-shadow);
|
|
97
97
|
|
98
98
|
|
99
99
|
|
100
|
-
////////// style placeholder text //////////
|
101
|
-
// deprecation alert!!!! this mixin will be deleted in future releases //
|
102
|
-
@mixin placeholder_styles ($color: $placeholder_text) {
|
103
|
-
color: $color;
|
104
|
-
}
|
105
|
-
|
106
|
-
@mixin placeholder ($color) {
|
107
|
-
&::-webkit-input-placeholder {
|
108
|
-
@include placeholder_styles ($color);
|
109
|
-
}
|
110
|
-
&:-moz-placeholder {
|
111
|
-
@include placeholder_styles ($color);
|
112
|
-
}
|
113
|
-
&:-ms-input-placeholder {
|
114
|
-
@include placeholder_styles ($color);
|
115
|
-
}
|
116
|
-
}
|
117
|
-
// deprecation alert!!!! this mixin will be deleted in future releases //
|
118
|
-
////////// style placeholder text //////////
|
119
|
-
|
120
|
-
|
121
|
-
|
122
100
|
|
123
101
|
/////////// image with gradient background ////////////
|
124
102
|
// ------------------------------------------------- //
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stipe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.6.
|
4
|
+
version: 0.0.6.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-07-
|
13
|
+
date: 2013-07-18 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: compass
|