@idds/styles 1.0.45 → 1.0.46
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/package.json +1 -1
- package/src/components/stepper.css +15 -10
package/package.json
CHANGED
|
@@ -10,13 +10,9 @@
|
|
|
10
10
|
justify-content: space-between;
|
|
11
11
|
width: 100%;
|
|
12
12
|
}
|
|
13
|
-
.ina-stepper--horizontal .ina-stepper__separator {
|
|
14
|
-
position: relative;
|
|
15
|
-
bottom: 12px;
|
|
16
|
-
}
|
|
17
13
|
.ina-stepper--vertical .ina-stepper__separator {
|
|
18
14
|
position: relative;
|
|
19
|
-
|
|
15
|
+
left: 12px;
|
|
20
16
|
}
|
|
21
17
|
|
|
22
18
|
/* Vertical Layout */
|
|
@@ -40,7 +36,6 @@
|
|
|
40
36
|
|
|
41
37
|
.ina-stepper--horizontal-responsive .ina-stepper__item {
|
|
42
38
|
width: 100%;
|
|
43
|
-
margin-bottom: 1rem;
|
|
44
39
|
align-items: flex-start;
|
|
45
40
|
}
|
|
46
41
|
|
|
@@ -78,7 +73,6 @@
|
|
|
78
73
|
flex-direction: row;
|
|
79
74
|
text-align: left;
|
|
80
75
|
align-items: flex-start;
|
|
81
|
-
margin-bottom: 1rem;
|
|
82
76
|
padding: 0;
|
|
83
77
|
width: 100%;
|
|
84
78
|
height: 24px;
|
|
@@ -86,6 +80,10 @@
|
|
|
86
80
|
max-height: 24px;
|
|
87
81
|
overflow: visible;
|
|
88
82
|
}
|
|
83
|
+
.ina-stepper--vertical .ina-stepper__separator,
|
|
84
|
+
.ina-stepper--horizontal-responsive .ina-stepper__separator {
|
|
85
|
+
min-height: 72px;
|
|
86
|
+
}
|
|
89
87
|
|
|
90
88
|
.ina-stepper--vertical .ina-stepper__item:last-child {
|
|
91
89
|
margin-bottom: 0;
|
|
@@ -129,11 +127,18 @@
|
|
|
129
127
|
|
|
130
128
|
/* Label */
|
|
131
129
|
.ina-stepper__label {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
color: var(--ina-content-secondary);
|
|
130
|
+
font-size: var(--ina-font-size-xs);
|
|
131
|
+
color: var(--ina-content-primary);
|
|
135
132
|
transition: color 0.2s ease;
|
|
136
133
|
white-space: nowrap;
|
|
134
|
+
position: absolute;
|
|
135
|
+
top: 2rem;
|
|
136
|
+
}
|
|
137
|
+
.ina-stepper--vertical .ina-stepper__label,
|
|
138
|
+
.ina-stepper--horizontal-responsive .ina-stepper__label {
|
|
139
|
+
position: absolute;
|
|
140
|
+
left: 2rem;
|
|
141
|
+
top: 0.25rem;
|
|
137
142
|
}
|
|
138
143
|
|
|
139
144
|
.ina-stepper--vertical .ina-stepper__label {
|