-
Notifications
You must be signed in to change notification settings - Fork 2
/
stepsform.scss
73 lines (62 loc) · 1.28 KB
/
stepsform.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
---
//
// Web Experience Toolkit (WET) / Boîte à outils de l'expérience Web (BOEW)
// wet-boew.github.io/wet-boew/License-en.html / wet-boew.github.io/wet-boew/Licence-fr.html
//
.provisional.wb-steps-cra {
counter-reset: fieldset_counter;
.wb-tggle-fildst {
> legend {
&:before {
background-color: #fff;
border: 3px solid #6f6f6f;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
box-sizing: content-box;
content: counter(fieldset_counter);
counter-increment: fieldset_counter;
display: inline-block;
height: 1.2em;
line-height: 1.2;
margin-left: 5px;
margin-right: 15px;
padding: 4px;
text-align: center;
width: 1.2em;
}
&.wb-steps-active {
color: #1c578a;
}
&.wb-steps-active:before {
background-color: #1c578a;
border-color: #1c578a;
color: #fff;
margin-left: 0px;
margin-right: 10px;
}
&.wb-steps-error {
color: #942826;
}
&:not(.wb-steps-active) {
font-size: 1em;
margin-bottom: 10px;
}
&[role=button] {
text-decoration:underline;
@media print {
+.hidden {
display: inherit!important;
}
}
}
}
}
.steps-wrapper {
border-bottom: 1px solid #c0c0c0;
}
.subfields {
border: 0;
}
}