active_frontend 14.2.4 → 14.2.5

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: 59fe5d89c6d5453592609704ee2d27034e764207
4
- data.tar.gz: 5a7efd665f78e19e8c30e11662aa1f88c3d91cac
3
+ metadata.gz: b5bec3aa21111260fdd25250c0d20c1086402c01
4
+ data.tar.gz: 8ebeb1e68d44640964305532383de8cda4737a8c
5
5
  SHA512:
6
- metadata.gz: fee35e0983a98ca854defe58bc8f23309431fab7c1b28cc88540226cba3899445f0f0098bd28fbb1478ab0171064a8ce7af95be0c829733b1f180869160196ff
7
- data.tar.gz: 931e49184ede92247aca81a08383a883eb2bc7883f9f2f443a2f5344417d58994ac7d119a53a85cd9f9f8bf1e90b490fc8b0e5f41652a104e371e25312973717
6
+ metadata.gz: 342ee87fac21ef411ed2cf8629789e944eebd3143e089aa0e9c88db40a0cd0ac21b276223ac031beca19d790d2efcd0e0880a97525ec0f20848cbfe02fed3fc5
7
+ data.tar.gz: 2d0018b52752887866625c1b536828ad1ee995c09f149c09b984adc4c9fba483829c3f3edb35fed508749d74cab343d839883a9e75af341572020181abd8471c
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><circle cx="11" cy="11" r="11"/></svg>
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = '14.2.4'.freeze
2
+ VERSION = '14.2.5'.freeze
3
3
  end
@@ -3,6 +3,7 @@
3
3
  // Reset
4
4
  // Inputs
5
5
  // Selects
6
+ // Choicepickers
6
7
  // Checkboxes & Radios
7
8
  // Notes
8
9
  // Tags
@@ -247,6 +248,57 @@ textarea {
247
248
  // Selects
248
249
  // ==================================================
249
250
  .form-select {
251
+ &.form-size-l {
252
+ select {
253
+ font-size: text-size(l);
254
+ padding: 19px 20px 20px;
255
+ }
256
+ }
257
+ &.form-size-m {
258
+ select {
259
+ font-size: text-size(m);
260
+ padding: 16px 20px 17px;
261
+ }
262
+ }
263
+ &.form-size-s {
264
+ select {
265
+ font-size: text-size(s);
266
+ margin-bottom: 5px;
267
+ padding: 8px 10px 9px;
268
+ }
269
+ }
270
+ &.form-width-l {
271
+ select { width: 175px; }
272
+ }
273
+ &.form-width-m {
274
+ select { width: 125px; }
275
+ }
276
+ &.form-width-b {
277
+ select { width: 100px; }
278
+ }
279
+ &.form-width-s {
280
+ select { width: 75px; }
281
+ }
282
+ &.form-style-inline {
283
+ display: inline-block;
284
+ width: auto;
285
+
286
+ select {
287
+ display: inherit;
288
+ width: inherit;
289
+ }
290
+
291
+ &::after { display: none !important; }
292
+ }
293
+ &.with-multiple {
294
+ &::after { display: none !important; }
295
+ }
296
+ }
297
+
298
+ // Choicepickers
299
+ // ==================================================
300
+ .form-select,
301
+ .with-choicepicker {
250
302
  display: block;
251
303
  position: relative;
252
304
  vertical-align: middle;
@@ -274,11 +326,6 @@ textarea {
274
326
  top: 50%;
275
327
  }
276
328
  &.form-size-l {
277
- select {
278
- font-size: text-size(l);
279
- padding: 19px 20px 20px;
280
- }
281
-
282
329
  &::after {
283
330
  font-size: text-size(l);
284
331
  margin-top: -9px;
@@ -286,11 +333,6 @@ textarea {
286
333
  }
287
334
  }
288
335
  &.form-size-m {
289
- select {
290
- font-size: text-size(m);
291
- padding: 16px 20px 17px;
292
- }
293
-
294
336
  &::after {
295
337
  font-size: text-size(m);
296
338
  margin-top: -9px;
@@ -298,44 +340,12 @@ textarea {
298
340
  }
299
341
  }
300
342
  &.form-size-s {
301
- select {
302
- font-size: text-size(s);
303
- margin-bottom: 5px;
304
- padding: 8px 10px 9px;
305
- }
306
-
307
343
  &::after {
308
344
  font-size: text-size(s);
309
345
  margin-top: -7px;
310
346
  right: 10px;
311
347
  }
312
348
  }
313
- &.form-width-l {
314
- select { width: 175px; }
315
- }
316
- &.form-width-m {
317
- select { width: 125px; }
318
- }
319
- &.form-width-b {
320
- select { width: 100px; }
321
- }
322
- &.form-width-s {
323
- select { width: 75px; }
324
- }
325
- &.form-style-inline {
326
- display: inline-block;
327
- width: auto;
328
-
329
- select {
330
- display: inherit;
331
- width: inherit;
332
- }
333
-
334
- &::after { display: none; }
335
- }
336
- &.with-multiple {
337
- &::after { display: none; }
338
- }
339
349
  }
340
350
 
341
351
  // Checkboxes & Radios
@@ -63,23 +63,23 @@
63
63
  .icon-align-right::before { content: '\e908'; }
64
64
  .icon-anchor::before { content: '\e909'; }
65
65
  .icon-aperture::before { content: '\e90a'; }
66
+ .icon-arrow-down::before { content: '\e90d'; }
66
67
  .icon-arrow-down-left::before { content: '\e90b'; }
67
68
  .icon-arrow-down-right::before { content: '\e90c'; }
68
- .icon-arrow-down::before { content: '\e90d'; }
69
69
  .icon-arrow-left::before { content: '\e90e'; }
70
70
  .icon-arrow-right::before { content: '\e90f'; }
71
+ .icon-arrow-up::before { content: '\e912'; }
71
72
  .icon-arrow-up-left::before { content: '\e910'; }
72
73
  .icon-arrow-up-right::before { content: '\e911'; }
73
- .icon-arrow-up::before { content: '\e912'; }
74
74
  .icon-at-sign::before { content: '\e913'; }
75
75
  .icon-award::before { content: '\e914'; }
76
- .icon-bar-chart-2::before { content: '\e915'; }
77
76
  .icon-bar-chart::before { content: '\e916'; }
77
+ .icon-bar-chart-2::before { content: '\e915'; }
78
+ .icon-battery::before { content: '\e919'; }
78
79
  .icon-battery-charging::before { content: '\e917'; }
79
80
  .icon-battery-full::before { content: '\e918'; }
80
- .icon-battery::before { content: '\e919'; }
81
- .icon-bell-off::before { content: '\e91a'; }
82
81
  .icon-bell::before { content: '\e91b'; }
82
+ .icon-bell-off::before { content: '\e91a'; }
83
83
  .icon-bluetooth::before { content: '\e91c'; }
84
84
  .icon-bold::before { content: '\e91d'; }
85
85
  .icon-book::before { content: '\e91e'; }
@@ -87,12 +87,12 @@
87
87
  .icon-box::before { content: '\e920'; }
88
88
  .icon-briefcase::before { content: '\e921'; }
89
89
  .icon-calendar::before { content: '\e922'; }
90
- .icon-camera-off::before { content: '\e923'; }
91
90
  .icon-camera::before { content: '\e924'; }
91
+ .icon-camera-off::before { content: '\e923'; }
92
92
  .icon-cast::before { content: '\e925'; }
93
+ .icon-check::before { content: '\e928'; }
93
94
  .icon-check-circle::before { content: '\e926'; }
94
95
  .icon-check-square::before { content: '\e927'; }
95
- .icon-check::before { content: '\e928'; }
96
96
  .icon-chevron-down::before { content: '\e929'; }
97
97
  .icon-chevron-left::before { content: '\e92a'; }
98
98
  .icon-chevron-right::before { content: '\e92b'; }
@@ -103,14 +103,15 @@
103
103
  .icon-chevrons-up::before { content: '\e930'; }
104
104
  .icon-chrome::before { content: '\e931'; }
105
105
  .icon-circle::before { content: '\e932'; }
106
+ .icon-circle-full::before { content: '\ea00'; }
106
107
  .icon-clipboard::before { content: '\e933'; }
107
108
  .icon-clock::before { content: '\e934'; }
109
+ .icon-cloud::before { content: '\e93a'; }
108
110
  .icon-cloud-drizzle::before { content: '\e935'; }
109
111
  .icon-cloud-lightning::before { content: '\e936'; }
110
112
  .icon-cloud-off::before { content: '\e937'; }
111
113
  .icon-cloud-rain::before { content: '\e938'; }
112
114
  .icon-cloud-snow::before { content: '\e939'; }
113
- .icon-cloud::before { content: '\e93a'; }
114
115
  .icon-code::before { content: '\e93b'; }
115
116
  .icon-codepen::before { content: '\e93c'; }
116
117
  .icon-command::before { content: '\e93d'; }
@@ -127,29 +128,29 @@
127
128
  .icon-cpu::before { content: '\e948'; }
128
129
  .icon-credit-card::before { content: '\e949'; }
129
130
  .icon-crop::before { content: '\e94a'; }
131
+ .icon-cross::before { content: '\e9fc'; }
130
132
  .icon-cross-circle::before { content: '\e9fa'; }
131
133
  .icon-cross-square::before { content: '\e9fb'; }
132
- .icon-cross::before { content: '\e9fc'; }
133
134
  .icon-crosshair::before { content: '\e94b'; }
134
135
  .icon-delete::before { content: '\e94c'; }
135
136
  .icon-disc::before { content: '\e94d'; }
136
- .icon-download-cloud::before { content: '\e94e'; }
137
137
  .icon-download::before { content: '\e94f'; }
138
+ .icon-download-cloud::before { content: '\e94e'; }
138
139
  .icon-drag-handle::before { content: '\e950'; }
139
140
  .icon-droplet::before { content: '\e951'; }
141
+ .icon-edit::before { content: '\e954'; }
140
142
  .icon-edit-2::before { content: '\e952'; }
141
143
  .icon-edit-3::before { content: '\e953'; }
142
- .icon-edit::before { content: '\e954'; }
143
144
  .icon-external-link::before { content: '\e955'; }
144
- .icon-eye-off::before { content: '\e956'; }
145
145
  .icon-eye::before { content: '\e957'; }
146
+ .icon-eye-off::before { content: '\e956'; }
146
147
  .icon-facebook::before { content: '\e958'; }
147
148
  .icon-fast-forward::before { content: '\e959'; }
148
149
  .icon-feather::before { content: '\e95a'; }
150
+ .icon-file::before { content: '\e95e'; }
149
151
  .icon-file-minus::before { content: '\e95b'; }
150
152
  .icon-file-plus::before { content: '\e95c'; }
151
153
  .icon-file-text::before { content: '\e95d'; }
152
- .icon-file::before { content: '\e95e'; }
153
154
  .icon-film::before { content: '\e95f'; }
154
155
  .icon-filter::before { content: '\e960'; }
155
156
  .icon-flag::before { content: '\e961'; }
@@ -178,8 +179,8 @@
178
179
  .icon-layers::before { content: '\e978'; }
179
180
  .icon-layout::before { content: '\e979'; }
180
181
  .icon-life-buoy::before { content: '\e97a'; }
181
- .icon-link-2::before { content: '\e97b'; }
182
182
  .icon-link::before { content: '\e97c'; }
183
+ .icon-link-2::before { content: '\e97b'; }
183
184
  .icon-linkedin::before { content: '\e97d'; }
184
185
  .icon-list::before { content: '\e97e'; }
185
186
  .icon-loader::before { content: '\e97f'; }
@@ -187,47 +188,47 @@
187
188
  .icon-log-in::before { content: '\e981'; }
188
189
  .icon-log-out::before { content: '\e982'; }
189
190
  .icon-mail::before { content: '\e983'; }
190
- .icon-map-pin::before { content: '\e984'; }
191
191
  .icon-map::before { content: '\e985'; }
192
- .icon-maximize-2::before { content: '\e986'; }
192
+ .icon-map-pin::before { content: '\e984'; }
193
193
  .icon-maximize::before { content: '\e987'; }
194
+ .icon-maximize-2::before { content: '\e986'; }
194
195
  .icon-menu::before { content: '\e988'; }
195
196
  .icon-message-circle::before { content: '\e989'; }
196
197
  .icon-message-square::before { content: '\e98a'; }
197
- .icon-mic-off::before { content: '\e98b'; }
198
198
  .icon-mic::before { content: '\e98c'; }
199
- .icon-minimize-2::before { content: '\e98d'; }
199
+ .icon-mic-off::before { content: '\e98b'; }
200
200
  .icon-minimize::before { content: '\e98e'; }
201
+ .icon-minimize-2::before { content: '\e98d'; }
202
+ .icon-minus::before { content: '\e991'; }
201
203
  .icon-minus-circle::before { content: '\e98f'; }
202
204
  .icon-minus-square::before { content: '\e990'; }
203
- .icon-minus::before { content: '\e991'; }
204
205
  .icon-monitor::before { content: '\e992'; }
205
206
  .icon-moon::before { content: '\e993'; }
206
207
  .icon-more-horizontal::before { content: '\e994'; }
207
208
  .icon-more-vertical::before { content: '\e995'; }
208
209
  .icon-move::before { content: '\e996'; }
209
210
  .icon-music::before { content: '\e997'; }
210
- .icon-navigation-2::before { content: '\e998'; }
211
211
  .icon-navigation::before { content: '\e999'; }
212
+ .icon-navigation-2::before { content: '\e998'; }
212
213
  .icon-octagon::before { content: '\e99a'; }
213
214
  .icon-package::before { content: '\e99b'; }
214
215
  .icon-paperclip::before { content: '\e99c'; }
215
- .icon-pause-circle::before { content: '\e99d'; }
216
216
  .icon-pause::before { content: '\e99e'; }
217
+ .icon-pause-circle::before { content: '\e99d'; }
217
218
  .icon-percent::before { content: '\e99f'; }
219
+ .icon-phone::before { content: '\e9a6'; }
218
220
  .icon-phone-call::before { content: '\e9a0'; }
219
221
  .icon-phone-forwarded::before { content: '\e9a1'; }
220
222
  .icon-phone-incoming::before { content: '\e9a2'; }
221
223
  .icon-phone-missed::before { content: '\e9a3'; }
222
224
  .icon-phone-off::before { content: '\e9a4'; }
223
225
  .icon-phone-outgoing::before { content: '\e9a5'; }
224
- .icon-phone::before { content: '\e9a6'; }
225
226
  .icon-pie-chart::before { content: '\e9a7'; }
226
- .icon-play-circle::before { content: '\e9a8'; }
227
227
  .icon-play::before { content: '\e9a9'; }
228
+ .icon-play-circle::before { content: '\e9a8'; }
229
+ .icon-plus::before { content: '\e9ac'; }
228
230
  .icon-plus-circle::before { content: '\e9aa'; }
229
231
  .icon-plus-square::before { content: '\e9ab'; }
230
- .icon-plus::before { content: '\e9ac'; }
231
232
  .icon-pocket::before { content: '\e9ad'; }
232
233
  .icon-power::before { content: '\e9ae'; }
233
234
  .icon-printer::before { content: '\e9af'; }
@@ -246,8 +247,8 @@
246
247
  .icon-sexuality-gay::before { content: '\e9bc'; }
247
248
  .icon-sexuality-lesbian::before { content: '\e9bd'; }
248
249
  .icon-sexuality-straight::before { content: '\e9be'; }
249
- .icon-share-2::before { content: '\e9bf'; }
250
250
  .icon-share::before { content: '\e9c0'; }
251
+ .icon-share-2::before { content: '\e9bf'; }
251
252
  .icon-shield::before { content: '\e9c1'; }
252
253
  .icon-shopping-cart::before { content: '\e9c2'; }
253
254
  .icon-shuffle::before { content: '\e9c3'; }
@@ -260,9 +261,9 @@
260
261
  .icon-smartphone::before { content: '\e9ca'; }
261
262
  .icon-speaker::before { content: '\e9cb'; }
262
263
  .icon-square::before { content: '\e9cc'; }
264
+ .icon-star::before { content: '\e9cf'; }
263
265
  .icon-star-full::before { content: '\e9cd'; }
264
266
  .icon-star-half::before { content: '\e9ce'; }
265
- .icon-star::before { content: '\e9cf'; }
266
267
  .icon-stop-circle::before { content: '\e9d0'; }
267
268
  .icon-sun::before { content: '\e9d1'; }
268
269
  .icon-sunrise::before { content: '\e9d2'; }
@@ -275,8 +276,8 @@
275
276
  .icon-thumbs-up::before { content: '\e9d9'; }
276
277
  .icon-toggle-left::before { content: '\e9da'; }
277
278
  .icon-toggle-right::before { content: '\e9db'; }
278
- .icon-trash-2::before { content: '\e9dc'; }
279
279
  .icon-trash::before { content: '\e9dd'; }
280
+ .icon-trash-2::before { content: '\e9dc'; }
280
281
  .icon-trending-down::before { content: '\e9de'; }
281
282
  .icon-trending-up::before { content: '\e9df'; }
282
283
  .icon-triangle::before { content: '\e9e0'; }
@@ -286,24 +287,24 @@
286
287
  .icon-umbrella::before { content: '\e9e4'; }
287
288
  .icon-underline::before { content: '\e9e5'; }
288
289
  .icon-unlock::before { content: '\e9e6'; }
289
- .icon-upload-cloud::before { content: '\e9e7'; }
290
290
  .icon-upload::before { content: '\e9e8'; }
291
+ .icon-upload-cloud::before { content: '\e9e7'; }
292
+ .icon-user::before { content: '\e9ed'; }
291
293
  .icon-user-check::before { content: '\e9e9'; }
292
294
  .icon-user-minus::before { content: '\e9ea'; }
293
295
  .icon-user-plus::before { content: '\e9eb'; }
294
296
  .icon-user-x::before { content: '\e9ec'; }
295
- .icon-user::before { content: '\e9ed'; }
296
297
  .icon-users::before { content: '\e9ee'; }
297
- .icon-video-off::before { content: '\e9ef'; }
298
298
  .icon-video::before { content: '\e9f0'; }
299
+ .icon-video-off::before { content: '\e9ef'; }
299
300
  .icon-voicemail::before { content: '\e9f1'; }
301
+ .icon-volume::before { content: '\e9f5'; }
300
302
  .icon-volume-1::before { content: '\e9f2'; }
301
303
  .icon-volume-2::before { content: '\e9f3'; }
302
304
  .icon-volume-x::before { content: '\e9f4'; }
303
- .icon-volume::before { content: '\e9f5'; }
304
305
  .icon-watch::before { content: '\e9f6'; }
305
- .icon-wifi-off::before { content: '\e9f7'; }
306
306
  .icon-wifi::before { content: '\e9f8'; }
307
+ .icon-wifi-off::before { content: '\e9f7'; }
307
308
  .icon-wind::before { content: '\e9f9'; }
308
309
  .icon-zap::before { content: '\e9fd'; }
309
310
  .icon-zoom-in::before { content: '\e9fe'; }
@@ -32,15 +32,7 @@
32
32
  &:active,
33
33
  &:focus { color: color(primary); }
34
34
 
35
- > i {
36
- font-size: text-size(l);
37
- display: block;
38
- margin-bottom: 3px;
39
- }
40
- }
41
-
42
- &.primary {
43
- > a {
35
+ &.primary {
44
36
  &:hover,
45
37
  &.active,
46
38
  &:active,
@@ -49,7 +41,14 @@
49
41
  color: color(white);
50
42
  }
51
43
  }
44
+
45
+ > i {
46
+ font-size: text-size(l);
47
+ display: block;
48
+ margin-bottom: 3px;
49
+ }
52
50
  }
51
+
53
52
  &.fixed {
54
53
  bottom: 0;
55
54
  left: 0;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.2.4
4
+ version: 14.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
@@ -233,6 +233,7 @@ files:
233
233
  - app/assets/images/icons/chevrons-right.svg
234
234
  - app/assets/images/icons/chevrons-up.svg
235
235
  - app/assets/images/icons/chrome.svg
236
+ - app/assets/images/icons/circle-full.svg
236
237
  - app/assets/images/icons/circle.svg
237
238
  - app/assets/images/icons/clipboard.svg
238
239
  - app/assets/images/icons/clock.svg