pwnstyles_rails 0.2.0 → 0.2.1
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/app/assets/stylesheets/pwnplus/_form_fields.css.scss +6 -6
- data/pwnstyles_rails.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dd476c3c2eea133c17dfa987717068b4bfc44a5
|
4
|
+
data.tar.gz: bb5f2e86e56d15fa66d4f2f8e03ac1ee2327a4e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 288ecbf9769da107c85ed39a19e6aaba24ffeb91910e83f2edf2d38dd719c6a7ebe36e00399a8afb48e55be65e671c2c5079db0e0f63cc798e01778453364fe8
|
7
|
+
data.tar.gz: bcf34cc7e8c50752a3db58625b01f405900139bfe65ec9a514d4a8764987f64c187f2372d0a2599dc0feb5f8ed8e81b5cc56cd72bd4530a600f8ebe3f2a81c0c
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -107,17 +107,17 @@
|
|
107
107
|
);
|
108
108
|
padding: 0.125em 2ex 0.125em 0.5ex;
|
109
109
|
text-overflow: ellipsis;
|
110
|
-
-webkit-appearance:
|
111
|
-
-moz-appearance:
|
112
|
-
background-image:
|
110
|
+
-webkit-appearance: none;
|
111
|
+
-moz-appearance: none;
|
112
|
+
background-image: asset-data-url("pwnstyles/select-arrow.svg");
|
113
113
|
background-repeat: no-repeat;
|
114
114
|
background-position: center right;
|
115
115
|
background-size: auto 1em;
|
116
116
|
&:hover, &:focus {
|
117
|
-
background-image:
|
117
|
+
background-image: asset-data-url("pwnstyles/select-arrow-emph.svg");
|
118
118
|
}
|
119
|
-
// Animating the arrow SVG is glitchy on Chrome.
|
120
|
-
transition: all .218s, background-image
|
119
|
+
// Animating the arrow SVG is glitchy on Chrome. 0s is ignored, 1ms works.
|
120
|
+
transition: all 0.218s, background-image 1ms;
|
121
121
|
}
|
122
122
|
|
123
123
|
// Import to highlight a form field to indicate errors in the input.
|
data/pwnstyles_rails.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: pwnstyles_rails 0.2.
|
5
|
+
# stub: pwnstyles_rails 0.2.1 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "pwnstyles_rails"
|
9
|
-
s.version = "0.2.
|
9
|
+
s.version = "0.2.1"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|