linear-react-components-ui 1.1.20-beta.37 → 1.1.20-beta.38
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.
|
@@ -140,22 +140,21 @@
|
|
|
140
140
|
align-items: center;
|
|
141
141
|
gap: 10px;
|
|
142
142
|
position: relative;
|
|
143
|
-
text-align: center;
|
|
144
143
|
|
|
145
|
-
|
|
146
|
-
&:
|
|
144
|
+
&:has(+ .title) {
|
|
145
|
+
&:after {
|
|
147
146
|
content: "";
|
|
148
147
|
position: absolute;
|
|
149
|
-
|
|
148
|
+
bottom: -44px;
|
|
150
149
|
left: 17px;
|
|
151
150
|
width: 3px;
|
|
152
|
-
height: 100
|
|
151
|
+
height: calc(100% + 10px);
|
|
153
152
|
background-color: #dadada;
|
|
154
153
|
}
|
|
155
154
|
}
|
|
156
155
|
|
|
157
156
|
&[data-completed="true"] {
|
|
158
|
-
|
|
157
|
+
&:has(+ .title):after {
|
|
159
158
|
background-color: $success-color !important;
|
|
160
159
|
}
|
|
161
160
|
> .step {
|
|
@@ -42,7 +42,7 @@ declare const getMaskOptions: ({ isDateField, placeholderChar, min, max, lazy, p
|
|
|
42
42
|
mask?: any;
|
|
43
43
|
hint?: string | string[] | undefined;
|
|
44
44
|
hintPosition?: "below" | "onLabelRight" | undefined;
|
|
45
|
-
themePopover?: "
|
|
45
|
+
themePopover?: "dark" | "light" | undefined;
|
|
46
46
|
popoverAlign?: "left" | "right" | undefined;
|
|
47
47
|
placeholderChar: string;
|
|
48
48
|
min: any;
|