active_frontend 14.0.2 → 14.0.3
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: 6b146f9bb68bcc325a08a21d8e24b6aad6576e3b
|
4
|
+
data.tar.gz: 40b09298f49ee35838f2063c9d09fcd6b5f1c7cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 798e60540150e77fdb1ac642f4c28ea1e467a2df440690c43a19d0d6330c1b56da811a6ff5e29826d699f49acce7f71b515c55fff988277846189077e2d7061c
|
7
|
+
data.tar.gz: c7dce26653cf6502a8ea4c23e58190865b3a9778487dc2cb9b5a0abc83c29bc7aaf259ef31b230c8ef6d25f8dfe87f967adfe3c81a3ebf4ca39d93db25c558c5
|
@@ -111,21 +111,17 @@ textarea {
|
|
111
111
|
border-color: color(dark-haze);
|
112
112
|
vertical-align: middle;
|
113
113
|
|
114
|
-
&.form-size-l
|
115
|
-
&.form-size-m {
|
114
|
+
&.form-size-l {
|
116
115
|
input,
|
117
|
-
textarea {
|
118
|
-
|
116
|
+
textarea {
|
117
|
+
font-size: text-size(l);
|
118
|
+
padding: 14px 20px 15px;
|
119
|
+
}
|
119
120
|
input {
|
120
121
|
&::-webkit-input-placeholder { line-height: 30px; }
|
121
122
|
&::-moz-placeholder { line-height: 30px; }
|
122
123
|
&:-ms-input-placeholder { line-height: 30px; }
|
123
124
|
}
|
124
|
-
|
125
|
-
}
|
126
|
-
&.form-size-l {
|
127
|
-
input,
|
128
|
-
textarea { padding: 14px 20px 15px; }
|
129
125
|
textarea { height: 197px; }
|
130
126
|
|
131
127
|
&.form-height-m {
|
@@ -137,7 +133,15 @@ textarea {
|
|
137
133
|
}
|
138
134
|
&.form-size-m {
|
139
135
|
input,
|
140
|
-
textarea {
|
136
|
+
textarea {
|
137
|
+
font-size: text-size(m);
|
138
|
+
padding: 11px 20px 12px;
|
139
|
+
}
|
140
|
+
input {
|
141
|
+
&::-webkit-input-placeholder { line-height: 28px; }
|
142
|
+
&::-moz-placeholder { line-height: 28px; }
|
143
|
+
&:-ms-input-placeholder { line-height: 28px; }
|
144
|
+
}
|
141
145
|
textarea { height: 173px; }
|
142
146
|
|
143
147
|
&.form-height-m {
|
@@ -221,9 +225,11 @@ textarea {
|
|
221
225
|
right: 15px;
|
222
226
|
top: 50%;
|
223
227
|
}
|
224
|
-
&.form-size-l
|
225
|
-
|
226
|
-
|
228
|
+
&.form-size-l {
|
229
|
+
select {
|
230
|
+
font-size: text-size(l);
|
231
|
+
padding: 19px 20px 20px;
|
232
|
+
}
|
227
233
|
|
228
234
|
&::after {
|
229
235
|
font-size: text-size(l);
|
@@ -231,11 +237,17 @@ textarea {
|
|
231
237
|
right: 20px;
|
232
238
|
}
|
233
239
|
}
|
234
|
-
&.form-size-l {
|
235
|
-
select { padding: 19px 20px 20px; }
|
236
|
-
}
|
237
240
|
&.form-size-m {
|
238
|
-
select {
|
241
|
+
select {
|
242
|
+
font-size: text-size(m);
|
243
|
+
padding: 16px 20px 17px;
|
244
|
+
}
|
245
|
+
|
246
|
+
&::after {
|
247
|
+
font-size: text-size(m);
|
248
|
+
margin-top: -9px;
|
249
|
+
right: 20px;
|
250
|
+
}
|
239
251
|
}
|
240
252
|
&.form-size-s {
|
241
253
|
select {
|
@@ -376,7 +388,7 @@ textarea {
|
|
376
388
|
@include transition(all 0.3s ease-in-out);
|
377
389
|
font-size: text-size(xxs);
|
378
390
|
font-weight: text-weight(bold);
|
379
|
-
left:
|
391
|
+
left: 16px;
|
380
392
|
margin: 2px 0 0;
|
381
393
|
opacity: 0;
|
382
394
|
position: absolute;
|
@@ -386,7 +398,7 @@ textarea {
|
|
386
398
|
&.form-size-m {
|
387
399
|
label {
|
388
400
|
font-size: text-size(xs);
|
389
|
-
left:
|
401
|
+
left: 21px;
|
390
402
|
margin-top: 3px;
|
391
403
|
}
|
392
404
|
}
|
@@ -486,10 +498,8 @@ textarea {
|
|
486
498
|
&.form-size-m {
|
487
499
|
.form-addon {
|
488
500
|
font-size: text-size(m);
|
489
|
-
min-width:
|
501
|
+
min-width: 52px;
|
490
502
|
}
|
491
|
-
|
492
|
-
i { margin-top: 2px; }
|
493
503
|
}
|
494
504
|
&.form-size-s {
|
495
505
|
.form-addon {
|
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: 14.0.
|
4
|
+
version: 14.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -305,7 +305,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
305
305
|
version: '0'
|
306
306
|
requirements: []
|
307
307
|
rubyforge_project:
|
308
|
-
rubygems_version: 2.6.
|
308
|
+
rubygems_version: 2.6.7
|
309
309
|
signing_key:
|
310
310
|
specification_version: 4
|
311
311
|
summary: ActiveFrontend Responsive Web Framework
|