@axa-fr/design-system-slash-css 1.2.1-alpha.8 → 1.2.1-alpha.80
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.
- package/dist/Accordion/Accordion.css +1 -1
- package/dist/Accordion/Accordion.css.map +1 -1
- package/dist/Accordion/Accordion.scss +23 -4
- package/dist/Alert/Alert.css +1 -1
- package/dist/Alert/Alert.css.map +1 -1
- package/dist/Alert/Alert.scss +4 -108
- package/dist/Button/Button.css +1 -1
- package/dist/Button/Button.css.map +1 -1
- package/dist/Button/Button.scss +48 -59
- package/dist/Card/Card.css +82 -0
- package/dist/Form/Checkbox/Checkbox.css +1 -1
- package/dist/Form/Checkbox/Checkbox.css.map +1 -1
- package/dist/Form/Checkbox/Checkbox.scss +187 -82
- package/dist/Form/Date/Date.css +1 -1
- package/dist/Form/Date/Date.css.map +1 -1
- package/dist/Form/MultiSelect/MultiSelect.css +1 -1
- package/dist/Form/MultiSelect/MultiSelect.css.map +1 -1
- package/dist/Form/MultiSelect/MultiSelect.scss +2 -3
- package/dist/Form/Pass/Pass.css +1 -1
- package/dist/Form/Pass/Pass.css.map +1 -1
- package/dist/Form/Radio/Radio.css +1 -1
- package/dist/Form/Radio/Radio.css.map +1 -1
- package/dist/Form/Radio/Radio.scss +106 -102
- package/dist/Form/Radio/RadioCardGroup.css +86 -0
- package/dist/Form/Select/Select.css +1 -1
- package/dist/Form/Select/Select.css.map +1 -1
- package/dist/Form/Select/Select.scss +7 -7
- package/dist/Form/Text/Text.css +1 -1
- package/dist/Form/Text/Text.css.map +1 -1
- package/dist/Form/Text/Text.scss +27 -21
- package/dist/Form/Textarea/Textarea.css +1 -1
- package/dist/Form/Textarea/Textarea.css.map +1 -1
- package/dist/Form/Textarea/Textarea.scss +24 -23
- package/dist/Form/core/FormCore.css +1 -1
- package/dist/Form/core/FormCore.css.map +1 -1
- package/dist/Form/core/FormCore.scss +5 -25
- package/dist/Layout/Header/AnchorNavBar/AnchorNavBar.css +61 -0
- package/dist/Layout/Header/HeaderTitle/HeaderTitle.css +1 -1
- package/dist/Layout/Header/HeaderTitle/HeaderTitle.css.map +1 -1
- package/dist/Layout/Header/HeaderTitle/HeaderTitle.scss +37 -20
- package/dist/Message/Message.css +83 -0
- package/dist/Modal/Modal.css +1 -1
- package/dist/Modal/Modal.css.map +1 -1
- package/dist/Modal/Modal.scss +30 -55
- package/dist/Steps/Steps.css +1 -1
- package/dist/Steps/Steps.css.map +1 -1
- package/dist/Steps/Steps.scss +55 -46
- package/dist/Steps/VerticalStep.css +102 -0
- package/dist/Table/Pager.css +1 -1
- package/dist/Table/Pager.css.map +1 -1
- package/dist/Table/Pager.scss +3 -2
- package/dist/Table/Paging.css +1 -1
- package/dist/Table/Paging.css.map +1 -1
- package/dist/common/tokens.css +77 -56
- package/dist/slash.css +1 -1
- package/dist/slash.css.map +1 -1
- package/dist/slash.scss +4 -2
- package/package.json +1 -1
- package/dist/Form/Choice/Choice.css +0 -1
- package/dist/Form/Choice/Choice.css.map +0 -1
- package/dist/Form/Choice/Choice.scss +0 -186
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@use "../../common/common" as common;
|
|
2
1
|
@use "../core/FormCore";
|
|
3
2
|
@use "../../common/grid";
|
|
4
3
|
|
|
@@ -6,6 +5,20 @@
|
|
|
6
5
|
.af-form {
|
|
7
6
|
&__checkbox,
|
|
8
7
|
&__checkbox-inline {
|
|
8
|
+
.af-form__indicator {
|
|
9
|
+
display: flex;
|
|
10
|
+
width: 1rem;
|
|
11
|
+
height: 1rem;
|
|
12
|
+
border: 1px solid var(--input-border-color);
|
|
13
|
+
background-color: var(--white);
|
|
14
|
+
fill: none;
|
|
15
|
+
|
|
16
|
+
.ok-icon {
|
|
17
|
+
display: none;
|
|
18
|
+
fill: var(--white);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
9
22
|
&--disabled {
|
|
10
23
|
.af-form__label {
|
|
11
24
|
opacity: 0.4;
|
|
@@ -15,21 +28,32 @@
|
|
|
15
28
|
|
|
16
29
|
&--error {
|
|
17
30
|
.af-form__label {
|
|
18
|
-
color:
|
|
31
|
+
color: var(--error-color);
|
|
19
32
|
}
|
|
20
33
|
|
|
21
34
|
.af-form__indicator {
|
|
22
|
-
border-color:
|
|
35
|
+
border-color: var(--error-color);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.af-form__input-checkbox:checked + .af-form__label {
|
|
39
|
+
.af-form__indicator {
|
|
40
|
+
border-color: var(--error-color);
|
|
41
|
+
background-color: var(--error-color);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.ok-icon {
|
|
45
|
+
display: block;
|
|
46
|
+
}
|
|
23
47
|
}
|
|
24
48
|
}
|
|
25
49
|
|
|
26
50
|
&--warning {
|
|
27
51
|
.af-form__label {
|
|
28
|
-
color:
|
|
52
|
+
color: var(--warning-color);
|
|
29
53
|
}
|
|
30
54
|
|
|
31
55
|
.af-form__indicator {
|
|
32
|
-
border-color:
|
|
56
|
+
border-color: var(--warning-color);
|
|
33
57
|
}
|
|
34
58
|
}
|
|
35
59
|
}
|
|
@@ -40,18 +64,24 @@
|
|
|
40
64
|
|
|
41
65
|
&:checked + .af-form__label {
|
|
42
66
|
.af-form__indicator {
|
|
43
|
-
border-color:
|
|
44
|
-
color:
|
|
45
|
-
background-color:
|
|
67
|
+
border-color: var(--button-primary-default);
|
|
68
|
+
color: var(--white);
|
|
69
|
+
background-color: var(--button-primary-default);
|
|
46
70
|
|
|
47
|
-
.
|
|
71
|
+
.ok-icon {
|
|
48
72
|
display: block;
|
|
49
73
|
}
|
|
50
74
|
}
|
|
51
75
|
}
|
|
52
76
|
|
|
53
|
-
&:focus
|
|
54
|
-
|
|
77
|
+
&:focus {
|
|
78
|
+
& + .af-form__label {
|
|
79
|
+
color: var(--brand-primary);
|
|
80
|
+
|
|
81
|
+
.af-form__indicator {
|
|
82
|
+
border-color: var(--brand-primary);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
55
85
|
}
|
|
56
86
|
}
|
|
57
87
|
|
|
@@ -61,7 +91,7 @@
|
|
|
61
91
|
&__checkbox {
|
|
62
92
|
position: relative;
|
|
63
93
|
display: block;
|
|
64
|
-
border-bottom: 1px solid
|
|
94
|
+
border-bottom: 1px solid var(--disabled-color);
|
|
65
95
|
align-items: center;
|
|
66
96
|
|
|
67
97
|
&:nth-last-child(1) {
|
|
@@ -82,8 +112,7 @@
|
|
|
82
112
|
}
|
|
83
113
|
|
|
84
114
|
/* Custom */
|
|
85
|
-
&__checkbox-custom
|
|
86
|
-
&__checkbox-toggle {
|
|
115
|
+
&__checkbox-custom {
|
|
87
116
|
position: relative;
|
|
88
117
|
display: inline-flex;
|
|
89
118
|
margin: 0 0.3rem 0.3rem 0;
|
|
@@ -93,15 +122,23 @@
|
|
|
93
122
|
.af-form__label {
|
|
94
123
|
margin: 0;
|
|
95
124
|
padding: 0.5rem 2rem;
|
|
96
|
-
border: common.$color-gray;
|
|
97
125
|
font-weight: normal;
|
|
98
|
-
background:
|
|
99
|
-
box-shadow: inset 0 -2px 0 0
|
|
126
|
+
background: var(--gray20);
|
|
127
|
+
box-shadow: inset 0 -2px 0 0 var(--gray50);
|
|
100
128
|
cursor: pointer;
|
|
101
129
|
}
|
|
102
130
|
|
|
103
131
|
.af-form__indicator {
|
|
104
132
|
left: 1rem;
|
|
133
|
+
display: flex;
|
|
134
|
+
width: 1rem;
|
|
135
|
+
height: 1rem;
|
|
136
|
+
border: 1px solid var(--input-border-color);
|
|
137
|
+
background-color: var(--white);
|
|
138
|
+
|
|
139
|
+
.ok-icon {
|
|
140
|
+
display: none;
|
|
141
|
+
}
|
|
105
142
|
}
|
|
106
143
|
|
|
107
144
|
.af-form__description {
|
|
@@ -113,58 +150,90 @@
|
|
|
113
150
|
opacity: 0;
|
|
114
151
|
|
|
115
152
|
&:checked + .af-form__label {
|
|
116
|
-
color:
|
|
117
|
-
background-color:
|
|
118
|
-
box-shadow: inset 0 -2px 0 0
|
|
153
|
+
color: var(--white);
|
|
154
|
+
background-color: var(--brand-primary);
|
|
155
|
+
box-shadow: inset 0 -2px 0 0 var(--axablue90);
|
|
119
156
|
|
|
120
157
|
.af-form__indicator {
|
|
121
|
-
border:
|
|
122
|
-
|
|
123
|
-
background: common.$white;
|
|
158
|
+
border-color: var(--brand-primary);
|
|
159
|
+
background: var(--white);
|
|
124
160
|
|
|
125
|
-
.
|
|
126
|
-
|
|
161
|
+
.ok-icon {
|
|
162
|
+
fill: var(--brand-primary);
|
|
127
163
|
}
|
|
128
164
|
}
|
|
129
165
|
}
|
|
130
166
|
|
|
131
167
|
&:focus + .af-form__label {
|
|
132
|
-
color:
|
|
133
|
-
background-color:
|
|
134
|
-
box-shadow: 0 0 5px
|
|
168
|
+
color: var(--white);
|
|
169
|
+
background-color: var(--brand-primary);
|
|
170
|
+
box-shadow: 0 0 5px var(--brand-primary);
|
|
135
171
|
}
|
|
136
|
-
}
|
|
137
172
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
box-shadow: inset 0 -2px 0 0 common.$color-silver;
|
|
173
|
+
&:disabled + .af-form__label {
|
|
174
|
+
background-color: var(--gray20);
|
|
175
|
+
box-shadow: inset 0 -2px 0 0 var(--disabled-color);
|
|
142
176
|
cursor: not-allowed;
|
|
177
|
+
|
|
178
|
+
.af-form__description {
|
|
179
|
+
color: var(--disabled-color);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.af-form__indicator {
|
|
183
|
+
border: 1px solid var(--gray50);
|
|
184
|
+
background: var(--white);
|
|
185
|
+
|
|
186
|
+
.ok-icon {
|
|
187
|
+
fill: var(--gray50);
|
|
188
|
+
}
|
|
189
|
+
}
|
|
143
190
|
}
|
|
144
191
|
|
|
145
|
-
.af-
|
|
146
|
-
|
|
192
|
+
&[aria-invalid="true"] + .af-form__label {
|
|
193
|
+
color: var(--error-color);
|
|
194
|
+
background-color: var(--red10);
|
|
195
|
+
box-shadow: inset 0 -2px 0 0 var(--error-color);
|
|
196
|
+
|
|
197
|
+
.af-form__indicator {
|
|
198
|
+
border-color: var(--error-color);
|
|
199
|
+
|
|
200
|
+
.ok-icon {
|
|
201
|
+
fill: var(--error-color);
|
|
202
|
+
}
|
|
203
|
+
}
|
|
147
204
|
}
|
|
148
|
-
}
|
|
149
205
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
box-shadow: inset 0 -2px 0 0 common.$color-red-error;
|
|
206
|
+
&[aria-invalid="true"]:focus + .af-form__label {
|
|
207
|
+
box-shadow: none;
|
|
208
|
+
outline: 2px solid var(--button-primary-default);
|
|
209
|
+
outline-offset: 0;
|
|
155
210
|
}
|
|
156
211
|
|
|
157
|
-
.af-
|
|
158
|
-
|
|
212
|
+
&[aria-invalid="true"]:disabled + .af-form__label {
|
|
213
|
+
background-color: var(--gray20);
|
|
214
|
+
box-shadow: inset 0 -2px 0 0 var(--error-color);
|
|
215
|
+
cursor: not-allowed;
|
|
216
|
+
|
|
217
|
+
.af-form__description {
|
|
218
|
+
color: var(--disabled-color);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.af-form__indicator {
|
|
222
|
+
border-color: var(--disabled-color);
|
|
223
|
+
|
|
224
|
+
.ok-icon {
|
|
225
|
+
color: var(--disabled-color);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
159
228
|
}
|
|
160
229
|
}
|
|
161
230
|
|
|
162
231
|
&:hover {
|
|
163
232
|
.af-form__label {
|
|
164
|
-
border-color:
|
|
165
|
-
color:
|
|
166
|
-
background-color:
|
|
167
|
-
box-shadow: inset 0 -2px 0 0
|
|
233
|
+
border-color: var(--brand-primary);
|
|
234
|
+
color: var(--white);
|
|
235
|
+
background-color: var(--brand-primary);
|
|
236
|
+
box-shadow: inset 0 -2px 0 0 var(--axablue90);
|
|
168
237
|
}
|
|
169
238
|
}
|
|
170
239
|
}
|
|
@@ -172,22 +241,34 @@
|
|
|
172
241
|
/* Toggle */
|
|
173
242
|
|
|
174
243
|
&__checkbox-toggle {
|
|
244
|
+
position: relative;
|
|
245
|
+
display: inline-flex;
|
|
246
|
+
|
|
175
247
|
.af-form__label {
|
|
176
|
-
|
|
248
|
+
width: 48px;
|
|
249
|
+
height: 24px;
|
|
250
|
+
padding: 0;
|
|
177
251
|
border: none;
|
|
178
252
|
border-radius: 50px;
|
|
179
|
-
|
|
253
|
+
background-color: var(--input-border-color);
|
|
180
254
|
}
|
|
181
255
|
|
|
182
256
|
.af-form__indicator {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
padding: 0.7rem;
|
|
257
|
+
width: 20px;
|
|
258
|
+
height: 20px;
|
|
259
|
+
margin: 0 2px;
|
|
187
260
|
border: 0;
|
|
188
261
|
border-radius: 100%;
|
|
189
|
-
|
|
262
|
+
background-color: var(--white);
|
|
190
263
|
transition: 0.4s;
|
|
264
|
+
|
|
265
|
+
@media (prefers-reduced-motion: reduce) {
|
|
266
|
+
transition: none;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.ok-icon {
|
|
270
|
+
display: none;
|
|
271
|
+
}
|
|
191
272
|
}
|
|
192
273
|
|
|
193
274
|
.af-form__description {
|
|
@@ -196,55 +277,79 @@
|
|
|
196
277
|
|
|
197
278
|
.af-form__input-checkbox {
|
|
198
279
|
&:checked + .af-form__label {
|
|
199
|
-
|
|
200
|
-
color:
|
|
201
|
-
background-color: common.$color-green-4;
|
|
202
|
-
box-shadow: none;
|
|
280
|
+
color: var(--white);
|
|
281
|
+
background-color: var(--button-primary-default);
|
|
203
282
|
|
|
204
283
|
.af-form__indicator {
|
|
205
|
-
color:
|
|
206
|
-
background:
|
|
207
|
-
transform:
|
|
208
|
-
|
|
209
|
-
.
|
|
210
|
-
|
|
211
|
-
|
|
284
|
+
color: var(--text-color);
|
|
285
|
+
background: var(--white);
|
|
286
|
+
transform: translateX(24px);
|
|
287
|
+
|
|
288
|
+
.ok-icon {
|
|
289
|
+
position: absolute;
|
|
290
|
+
left: -22px;
|
|
291
|
+
display: block;
|
|
292
|
+
width: 18px;
|
|
293
|
+
height: 100%;
|
|
294
|
+
animation: show-ok-icon 0.4s linear;
|
|
295
|
+
fill: var(--white);
|
|
296
|
+
|
|
297
|
+
@media (prefers-reduced-motion: reduce) {
|
|
298
|
+
animation: none;
|
|
299
|
+
}
|
|
212
300
|
}
|
|
213
301
|
}
|
|
214
302
|
}
|
|
215
303
|
|
|
216
304
|
&:focus + .af-form__label {
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
background-color: common.$color-axa;
|
|
220
|
-
box-shadow: none;
|
|
305
|
+
outline: 3px solid var(--button-primary-default);
|
|
306
|
+
outline-offset: -1px;
|
|
221
307
|
}
|
|
222
|
-
}
|
|
223
308
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
309
|
+
&:disabled + .af-form__label {
|
|
310
|
+
background-color: var(--disabled-color);
|
|
311
|
+
cursor: not-allowed;
|
|
312
|
+
|
|
313
|
+
.af-form__indicator {
|
|
314
|
+
background-color: var(--inactive-button-border-color);
|
|
315
|
+
|
|
316
|
+
.ok-icon {
|
|
317
|
+
display: none;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
228
320
|
}
|
|
229
321
|
}
|
|
230
322
|
|
|
231
|
-
|
|
323
|
+
&:hover {
|
|
232
324
|
.af-form__label {
|
|
233
|
-
|
|
325
|
+
outline: 3px solid var(--button-primary-default);
|
|
326
|
+
outline-offset: -1px;
|
|
234
327
|
}
|
|
235
|
-
}
|
|
236
328
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
background-color: common.$color-orange-dark;
|
|
329
|
+
.af-form__input-checkbox:disabled + .af-form__label {
|
|
330
|
+
outline: none;
|
|
240
331
|
}
|
|
241
332
|
}
|
|
242
333
|
|
|
243
|
-
&--
|
|
334
|
+
&--error {
|
|
244
335
|
.af-form__label {
|
|
245
|
-
background-color:
|
|
336
|
+
background-color: var(--error-color);
|
|
246
337
|
}
|
|
247
338
|
}
|
|
248
339
|
}
|
|
249
340
|
}
|
|
341
|
+
|
|
342
|
+
@keyframes show-ok-icon {
|
|
343
|
+
0% {
|
|
344
|
+
opacity: 0;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
50% {
|
|
348
|
+
opacity: 0;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
100% {
|
|
352
|
+
opacity: 1;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
250
355
|
/* stylelint-enable no-descending-specificity */
|
package/dist/Form/Date/Date.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.af-form{background:#f5f5f5;padding:1rem}.af-form__group{align-items:center;display:flex;flex-wrap:wrap;margin-bottom:3rem}.af-form__group--label-top{align-items:flex-start}.af-form__group-label{font-weight:400;margin:0}.af-form__group-label--required:after{color:#c7102e;content:" *"}.af-form__message{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:.2rem 0;min-height:1.6em;position:absolute}.af-form__message .glyphicon{margin-right:.4rem;width:17px}.af-form__message--error{color:#ff1721}.af-form__message--warning{color:#c5901b}.af-form__help{color:#7f7f7f;font-size:.8125em}.af-form__input-cmplt{display:inline-flex;margin-left:1rem}.af-form__fields-inline{align-items:flex-start;display:flex;justify-content:flex-start}.af-form__fields-inline .af-form__text{padding:0}.af-form__input-inline{margin-right:1rem}.af-form__label{align-items:center;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1rem 0}.af-form__indicator{background:#fff;border:1px solid #ccc;height:1rem;left:0;position:absolute;top:50%;transform:translateY(-50%);width:1rem}.af-form__indicator .glyphicon-ok{display:none;font-size:.625rem;font-weight:100;left:2px;position:absolute;top:2px;width:10px}.af-form__description{padding-left:1.8rem}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (width >= 576px){.container{max-width:540px}}@media (width >= 768px){.container{max-width:720px}}@media (width >= 992px){.container{max-width:960px}}@media (width >= 1200px){.container{max-width:1440px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333%;max-width:8.3333%}.col-2{flex:0 0 16.6667%;max-width:16.6667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333%;max-width:33.3333%}.col-5{flex:0 0 41.6667%;max-width:41.6667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333%;max-width:58.3333%}.col-8{flex:0 0 66.6667%;max-width:66.6667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333%;max-width:83.3333%}.col-11{flex:0 0 91.6667%;max-width:91.6667%}.col-12{flex:0 0 100%;max-width:100%}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333%}.offset-2{margin-left:16.6667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333%}.offset-5{margin-left:41.6667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333%}.offset-8{margin-left:66.6667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333%}.offset-11{margin-left:91.6667%}@media (width >= 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333%;max-width:8.3333%}.col-sm-2{flex:0 0 16.6667%;max-width:16.6667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333%;max-width:33.3333%}.col-sm-5{flex:0 0 41.6667%;max-width:41.6667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333%;max-width:58.3333%}.col-sm-8{flex:0 0 66.6667%;max-width:66.6667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333%;max-width:83.3333%}.col-sm-11{flex:0 0 91.6667%;max-width:91.6667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333%}.offset-sm-2{margin-left:16.6667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333%}.offset-sm-5{margin-left:41.6667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333%}.offset-sm-8{margin-left:66.6667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333%}.offset-sm-11{margin-left:91.6667%}}@media (width >= 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333%;max-width:8.3333%}.col-md-2{flex:0 0 16.6667%;max-width:16.6667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333%;max-width:33.3333%}.col-md-5{flex:0 0 41.6667%;max-width:41.6667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333%;max-width:58.3333%}.col-md-8{flex:0 0 66.6667%;max-width:66.6667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333%;max-width:83.3333%}.col-md-11{flex:0 0 91.6667%;max-width:91.6667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333%}.offset-md-2{margin-left:16.6667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333%}.offset-md-5{margin-left:41.6667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333%}.offset-md-8{margin-left:66.6667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333%}.offset-md-11{margin-left:91.6667%}}@media (width >= 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333%;max-width:8.3333%}.col-lg-2{flex:0 0 16.6667%;max-width:16.6667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333%;max-width:33.3333%}.col-lg-5{flex:0 0 41.6667%;max-width:41.6667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333%;max-width:58.3333%}.col-lg-8{flex:0 0 66.6667%;max-width:66.6667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333%;max-width:83.3333%}.col-lg-11{flex:0 0 91.6667%;max-width:91.6667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333%}.offset-lg-2{margin-left:16.6667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333%}.offset-lg-5{margin-left:41.6667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333%}.offset-lg-8{margin-left:66.6667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333%}.offset-lg-11{margin-left:91.6667%}}@media (width >= 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333%;max-width:8.3333%}.col-xl-2{flex:0 0 16.6667%;max-width:16.6667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333%;max-width:33.3333%}.col-xl-5{flex:0 0 41.6667%;max-width:41.6667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333%;max-width:58.3333%}.col-xl-8{flex:0 0 66.6667%;max-width:66.6667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333%;max-width:83.3333%}.col-xl-11{flex:0 0 91.6667%;max-width:91.6667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333%}.offset-xl-2{margin-left:16.6667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333%}.offset-xl-5{margin-left:41.6667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333%}.offset-xl-8{margin-left:66.6667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333%}.offset-xl-11{margin-left:91.6667%}}.af-form__date--disabled .af-form__input-date{cursor:not-allowed}.af-form__date--success .af-form__input-date{margin-right:1rem}.af-form__date--success:after{color:#1cc54e;content:"\eaba";font-family:icons;position:relative;top:5px}.af-form__date--success>.af-btn--circle{margin-right:1rem}.af-form__date--error{padding:0}.af-form__date--error .af-form__input-date{border:1px solid #ff1721;color:#ff1721}.af-form__date--warning{padding:0}.af-form__date--warning .af-form__input-date{border:1px solid #c5901b;color:#c5901b}.af-form__date-wrapper{display:inline-flex;position:relative}.af-form__input-date{border:1px solid #ccc;font-size:1em;line-height:20px;padding:.5625rem 1.2rem}.af-form__input-date:focus{border-color:#00008f;color:#00008f}.af-form__input-date--hasinfobulle{margin-right:1rem}.af-form__input-date::-ms-clear,.af-form__input-date::-ms-reveal{display:none}.af-form__help{bottom:-20px;display:block;position:absolute}.af-form__clear{position:absolute;right:3rem;top:.75rem}.af-form__clear:hover{background:#e5e5e5;border-radius:100%;box-shadow:0 0 0 6px #e5e5e5}
|
|
1
|
+
.af-form{background:#f5f5f5;padding:1rem}.af-form__group{align-items:center;display:flex;flex-wrap:wrap;margin-bottom:3rem}.af-form__group--label-top{align-items:flex-start}.af-form__group-label{font-size:1rem;font-weight:400;margin:0}.af-form__group-label--required:after{color:var(--error-color);content:" *"}.af-form__message{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:.2rem 0;min-height:1.6em;position:absolute}.af-form__message .glyphicon{margin-right:.4rem;width:17px}.af-form__message--error{color:var(--error-color)}.af-form__message--warning{color:var(--warning-color)}.af-form__help{color:var(--help-color);font-size:.8125em}.af-form__input-cmplt{display:inline-flex;margin-left:1rem}.af-form__fields-inline{align-items:flex-start;display:flex;justify-content:flex-start}.af-form__fields-inline .af-form__text{padding:0}.af-form__input-inline{margin-right:1rem}.af-form__label{align-items:center;cursor:pointer;display:flex;font-weight:400;margin:0;padding:1rem 0}.af-form__description{padding-left:1.8rem}.container{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (width >= 576px){.container{max-width:540px}}@media (width >= 768px){.container{max-width:720px}}@media (width >= 992px){.container{max-width:960px}}@media (width >= 1200px){.container{max-width:1440px}}.container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}.row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.no-gutters{margin-left:0;margin-right:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-left:15px;padding-right:15px;position:relative;width:100%}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;max-width:100%;width:auto}.col-1{flex:0 0 8.3333%;max-width:8.3333%}.col-2{flex:0 0 16.6667%;max-width:16.6667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.3333%;max-width:33.3333%}.col-5{flex:0 0 41.6667%;max-width:41.6667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.3333%;max-width:58.3333%}.col-8{flex:0 0 66.6667%;max-width:66.6667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.3333%;max-width:83.3333%}.col-11{flex:0 0 91.6667%;max-width:91.6667%}.col-12{flex:0 0 100%;max-width:100%}.no-gutters>.col,.no-gutters>[class*=col-]{padding-left:0;padding-right:0}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.3333%}.offset-2{margin-left:16.6667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333%}.offset-5{margin-left:41.6667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333%}.offset-8{margin-left:66.6667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333%}.offset-11{margin-left:91.6667%}@media (width >= 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;max-width:100%;width:auto}.col-sm-1{flex:0 0 8.3333%;max-width:8.3333%}.col-sm-2{flex:0 0 16.6667%;max-width:16.6667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.3333%;max-width:33.3333%}.col-sm-5{flex:0 0 41.6667%;max-width:41.6667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.3333%;max-width:58.3333%}.col-sm-8{flex:0 0 66.6667%;max-width:66.6667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.3333%;max-width:83.3333%}.col-sm-11{flex:0 0 91.6667%;max-width:91.6667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333%}.offset-sm-2{margin-left:16.6667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333%}.offset-sm-5{margin-left:41.6667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333%}.offset-sm-8{margin-left:66.6667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333%}.offset-sm-11{margin-left:91.6667%}}@media (width >= 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;max-width:100%;width:auto}.col-md-1{flex:0 0 8.3333%;max-width:8.3333%}.col-md-2{flex:0 0 16.6667%;max-width:16.6667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.3333%;max-width:33.3333%}.col-md-5{flex:0 0 41.6667%;max-width:41.6667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.3333%;max-width:58.3333%}.col-md-8{flex:0 0 66.6667%;max-width:66.6667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.3333%;max-width:83.3333%}.col-md-11{flex:0 0 91.6667%;max-width:91.6667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333%}.offset-md-2{margin-left:16.6667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333%}.offset-md-5{margin-left:41.6667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333%}.offset-md-8{margin-left:66.6667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333%}.offset-md-11{margin-left:91.6667%}}@media (width >= 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;max-width:100%;width:auto}.col-lg-1{flex:0 0 8.3333%;max-width:8.3333%}.col-lg-2{flex:0 0 16.6667%;max-width:16.6667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.3333%;max-width:33.3333%}.col-lg-5{flex:0 0 41.6667%;max-width:41.6667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.3333%;max-width:58.3333%}.col-lg-8{flex:0 0 66.6667%;max-width:66.6667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.3333%;max-width:83.3333%}.col-lg-11{flex:0 0 91.6667%;max-width:91.6667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333%}.offset-lg-2{margin-left:16.6667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333%}.offset-lg-5{margin-left:41.6667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333%}.offset-lg-8{margin-left:66.6667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333%}.offset-lg-11{margin-left:91.6667%}}@media (width >= 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;max-width:100%;width:auto}.col-xl-1{flex:0 0 8.3333%;max-width:8.3333%}.col-xl-2{flex:0 0 16.6667%;max-width:16.6667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.3333%;max-width:33.3333%}.col-xl-5{flex:0 0 41.6667%;max-width:41.6667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.3333%;max-width:58.3333%}.col-xl-8{flex:0 0 66.6667%;max-width:66.6667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.3333%;max-width:83.3333%}.col-xl-11{flex:0 0 91.6667%;max-width:91.6667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333%}.offset-xl-2{margin-left:16.6667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333%}.offset-xl-5{margin-left:41.6667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333%}.offset-xl-8{margin-left:66.6667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333%}.offset-xl-11{margin-left:91.6667%}}.af-form__date--disabled .af-form__input-date{cursor:not-allowed}.af-form__date--success .af-form__input-date{margin-right:1rem}.af-form__date--success:after{color:#1cc54e;content:"\eaba";font-family:icons;position:relative;top:5px}.af-form__date--success>.af-btn--circle{margin-right:1rem}.af-form__date--error{padding:0}.af-form__date--error .af-form__input-date{border:1px solid #ff1721;color:#ff1721}.af-form__date--warning{padding:0}.af-form__date--warning .af-form__input-date{border:1px solid #c5901b;color:#c5901b}.af-form__date-wrapper{display:inline-flex;position:relative}.af-form__input-date{border:1px solid #ccc;font-size:1em;line-height:20px;padding:.5625rem 1.2rem}.af-form__input-date:focus{border-color:#00008f;color:#00008f}.af-form__input-date--hasinfobulle{margin-right:1rem}.af-form__input-date::-ms-clear,.af-form__input-date::-ms-reveal{display:none}.af-form__help{bottom:-20px;display:block;position:absolute}.af-form__clear{position:absolute;right:3rem;top:.75rem}.af-form__clear:hover{background:#e5e5e5;border-radius:100%;box-shadow:0 0 0 6px #e5e5e5}
|