formalize-rails 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -41,7 +41,6 @@ select:invalid,
|
|
41
41
|
textarea:invalid {
|
42
42
|
-webkit-box-shadow: none;
|
43
43
|
-moz-box-shadow: none;
|
44
|
-
-o-box-shadow: none;
|
45
44
|
box-shadow: none;
|
46
45
|
}
|
47
46
|
input:focus,
|
@@ -50,7 +49,6 @@ select:focus,
|
|
50
49
|
textarea:focus {
|
51
50
|
-webkit-box-shadow: #0066ff 0 0 5px 0;
|
52
51
|
-moz-box-shadow: #0066ff 0 0 5px 0;
|
53
|
-
-o-box-shadow: #0066ff 0 0 5px 0;
|
54
52
|
box-shadow: #0066ff 0 0 5px 0;
|
55
53
|
z-index: 1;
|
56
54
|
}
|
@@ -62,7 +60,6 @@ input[type="checkbox"]:focus,
|
|
62
60
|
input[type="checkbox"]:active {
|
63
61
|
-webkit-box-shadow: none;
|
64
62
|
-moz-box-shadow: none;
|
65
|
-
-o-box-shadow: none;
|
66
63
|
box-shadow: none;
|
67
64
|
}
|
68
65
|
|
@@ -78,8 +75,6 @@ input[type="button"] {
|
|
78
75
|
border-radius: 4px;
|
79
76
|
-webkit-background-clip: padding;
|
80
77
|
-moz-background-clip: padding;
|
81
|
-
-ms-background-clip: padding-box;
|
82
|
-
-o-background-clip: padding-box;
|
83
78
|
background-clip: padding-box;
|
84
79
|
background: #dddddd image-url('formalize/button.png') repeat-x;
|
85
80
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
|
@@ -126,7 +121,6 @@ input[type="button"]:active {
|
|
126
121
|
background-image: linear-gradient(#ffffff, #dddddd 1px, #eeeeee);
|
127
122
|
-webkit-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
|
128
123
|
-moz-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
|
129
|
-
-o-box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
|
130
124
|
box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
|
131
125
|
border-color: #999999 #bbbbbb #dddddd;
|
132
126
|
}
|
@@ -160,12 +154,9 @@ input[type="url"],
|
|
160
154
|
input[type="week"] {
|
161
155
|
-webkit-box-sizing: border-box;
|
162
156
|
-moz-box-sizing: border-box;
|
163
|
-
-ms-box-sizing: border-box;
|
164
157
|
box-sizing: border-box;
|
165
158
|
-webkit-background-clip: padding;
|
166
159
|
-moz-background-clip: padding;
|
167
|
-
-ms-background-clip: padding-box;
|
168
|
-
-o-background-clip: padding-box;
|
169
160
|
background-clip: padding-box;
|
170
161
|
-webkit-border-radius: 0;
|
171
162
|
-moz-border-radius: 0;
|
@@ -215,7 +206,6 @@ select[disabled] optgroup,
|
|
215
206
|
textarea[disabled] {
|
216
207
|
-webkit-box-shadow: none;
|
217
208
|
-moz-box-shadow: none;
|
218
|
-
-o-box-shadow: none;
|
219
209
|
box-shadow: none;
|
220
210
|
-moz-user-select: -moz-none;
|
221
211
|
-webkit-user-select: none;
|
@@ -353,4 +343,4 @@ optgroup::-moz-focus-inner {
|
|
353
343
|
|
354
344
|
.ie6_input_disabled {
|
355
345
|
background: #eeeeee;
|
356
|
-
}
|
346
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: formalize-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-06-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
16
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,7 +21,12 @@ dependencies:
|
|
21
21
|
version: '3.1'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.1'
|
25
30
|
description: This gem provides the assets for the formalize form styling, for easy
|
26
31
|
usage with the Rails 3.1 asset pipeline.
|
27
32
|
email:
|
@@ -66,15 +71,21 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
71
|
- - ! '>='
|
67
72
|
- !ruby/object:Gem::Version
|
68
73
|
version: '0'
|
74
|
+
segments:
|
75
|
+
- 0
|
76
|
+
hash: -3003721231384923723
|
69
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
78
|
none: false
|
71
79
|
requirements:
|
72
80
|
- - ! '>='
|
73
81
|
- !ruby/object:Gem::Version
|
74
82
|
version: '0'
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
hash: -3003721231384923723
|
75
86
|
requirements: []
|
76
87
|
rubyforge_project: formalize-rails
|
77
|
-
rubygems_version: 1.8.
|
88
|
+
rubygems_version: 1.8.24
|
78
89
|
signing_key:
|
79
90
|
specification_version: 3
|
80
91
|
summary: Use Formalize with the asset pipeline
|