active_frontend 12.1.34 → 12.1.35
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 488667c63b0254f17645b0fe864c604a8d4dd97c
|
|
4
|
+
data.tar.gz: 53bb238c1f43d3a53b1c4a22f3aca325170cb297
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e49daf4215e2fb9d057a37b64cf943af1ec37210ff4b5c0196c0f182d8d3fe2803331e5a3e37869b8da854015a535883cb2009d5f63f07df2fec4acd63bf7e92
|
|
7
|
+
data.tar.gz: fb7c4124757bd16f3a0328b0940252d7126664f0eaa1107dfd50bbdbcdcc1b69eadfd6c2567640961a3feb4d028b382e2ebf8fd1f41fec56aaea8fd74da9193a
|
|
@@ -269,7 +269,7 @@ select[disabled] {
|
|
|
269
269
|
.form-floating-label > label {
|
|
270
270
|
font-size: 10px;
|
|
271
271
|
font-style: normal;
|
|
272
|
-
font-weight:
|
|
272
|
+
font-weight: 500;
|
|
273
273
|
left: 10px;
|
|
274
274
|
opacity: 0;
|
|
275
275
|
position: absolute;
|
|
@@ -277,22 +277,22 @@ select[disabled] {
|
|
|
277
277
|
top: 10px;
|
|
278
278
|
}
|
|
279
279
|
.form-floating-label > input:focus,
|
|
280
|
-
.form-floating-label > input:
|
|
280
|
+
.form-floating-label > input:focus:invalid,
|
|
281
281
|
.form-floating-label > textarea:focus,
|
|
282
|
-
.form-floating-label > textarea:
|
|
282
|
+
.form-floating-label > textarea:focus:invalid { padding-top: 15px; }
|
|
283
283
|
.form-floating-label > input:focus,
|
|
284
|
-
.form-floating-label > input:
|
|
284
|
+
.form-floating-label > input:focus:invalid { padding-bottom: 6px; }
|
|
285
285
|
.form-floating-label > input:focus + label,
|
|
286
|
+
.form-floating-label > input:focus:invalid + label,
|
|
286
287
|
.form-floating-label > textarea:focus + label,
|
|
287
|
-
.form-floating-label >
|
|
288
|
-
.form-floating-label > textarea:valid + label {
|
|
288
|
+
.form-floating-label > textarea:focus:invalid + label {
|
|
289
289
|
opacity: 1;
|
|
290
290
|
top: 2px;
|
|
291
291
|
}
|
|
292
292
|
.form-floating-label > input:focus + label,
|
|
293
293
|
.form-floating-label > textarea:focus + label { color: $color-green; }
|
|
294
|
-
.form-floating-label > input:invalid + label,
|
|
295
|
-
.form-floating-label > textarea:invalid + label { color: $color-red; }
|
|
294
|
+
.form-floating-label > input:focus:invalid + label,
|
|
295
|
+
.form-floating-label > textarea:focus:invalid + label { color: $color-red; }
|
|
296
296
|
.form-help-block {
|
|
297
297
|
color: $color-light-gray;
|
|
298
298
|
display: block;
|
|
@@ -161,6 +161,30 @@
|
|
|
161
161
|
border-color: darken($color-primary, 2%);
|
|
162
162
|
color: $color-white;
|
|
163
163
|
}
|
|
164
|
+
.header-nav-alt > li.inverse.secondary > a {
|
|
165
|
+
background: $color-secondary;
|
|
166
|
+
border-color: $color-secondary;
|
|
167
|
+
}
|
|
168
|
+
.header-nav-alt > li.inverse.outline.secondary > a { color: $color-primary; }
|
|
169
|
+
.header-nav-alt > li.inverse.secondary > a:hover,
|
|
170
|
+
.header-nav-alt > li.inverse.secondary > a.active,
|
|
171
|
+
.header-nav-alt > li.inverse.secondary > a:active,
|
|
172
|
+
.header-nav-alt > li.inverse.secondary > a:focus {
|
|
173
|
+
background: darken($color-secondary, 2%);
|
|
174
|
+
border-color: darken($color-secondary, 2%);
|
|
175
|
+
}
|
|
176
|
+
.header-nav-alt > li.inverse.tertiary > a {
|
|
177
|
+
background: $color-tertiary;
|
|
178
|
+
border-color: $color-tertiary;
|
|
179
|
+
}
|
|
180
|
+
.header-nav-alt > li.inverse.outline.tertiary > a { color: $color-tertiary; }
|
|
181
|
+
.header-nav-alt > li.inverse.tertiary > a:hover,
|
|
182
|
+
.header-nav-alt > li.inverse.tertiary > a.active,
|
|
183
|
+
.header-nav-alt > li.inverse.tertiary > a:active,
|
|
184
|
+
.header-nav-alt > li.inverse.tertiary > a:focus {
|
|
185
|
+
background: darken($color-tertiary, 2%);
|
|
186
|
+
border-color: darken($color-tertiary, 2%);
|
|
187
|
+
}
|
|
164
188
|
.header-user {
|
|
165
189
|
float: right;
|
|
166
190
|
font-size: 13px;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_frontend
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.1.
|
|
4
|
+
version: 12.1.35
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juan Gomez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|