Skip to content

Commit 4a74cce

Browse files
yordan-stgjulivan
authored andcommitted
fix: revert combobox input width
1 parent 99ef6e1 commit 4a74cce

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

packages/pluggableWidgets/combobox-web/src/ui/Combobox.scss

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ $cb-skeleton-dark: #d2d2d2;
159159
}
160160

161161
&-input {
162-
color: var(--gray-dark, $cb-gray-dark);
162+
color: var(--cb-text-color, --gray-dark, $cb-gray-dark);
163163
flex-grow: 1;
164164
border: none;
165165
padding: 0;
@@ -219,6 +219,7 @@ $cb-skeleton-dark: #d2d2d2;
219219
transform: rotate(180deg);
220220
transition: transform 0.2s;
221221
}
222+
stroke: var(--cb-text-color);
222223
}
223224
}
224225

@@ -229,7 +230,7 @@ $cb-skeleton-dark: #d2d2d2;
229230
cursor: not-allowed;
230231

231232
&-text {
232-
color: var(--gray-darker, $cb-typography-color);
233+
color: var(--cb-text-color, --gray-darker, $cb-typography-color);
233234
position: absolute;
234235
left: 0;
235236
right: 0;
@@ -243,7 +244,7 @@ $cb-skeleton-dark: #d2d2d2;
243244
}
244245

245246
&-empty {
246-
color: var(--gray-dark, $cb-gray-dark);
247+
color: var(--cb-text-color, --gray-dark, $cb-gray-dark);
247248
}
248249
}
249250

@@ -417,6 +418,18 @@ $cb-skeleton-dark: #d2d2d2;
417418
}
418419
}
419420

421+
.hide-bg.form-group .widget-combobox {
422+
.widget-combobox {
423+
&-input-container {
424+
background-color: transparent;
425+
border: unset;
426+
input {
427+
background-color: transparent;
428+
}
429+
}
430+
}
431+
}
432+
420433
@keyframes skeleton-loading {
421434
0% {
422435
background-position: right;

0 commit comments

Comments
 (0)