Skip to content

Commit 3316de0

Browse files
committed
fix(select): added missing background color to solid fill
1 parent 183a90a commit 3316de0

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

core/src/components/select/select.ionic.scss

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@
3838

3939
.select-text {
4040
min-width: globals.$ion-space-400;
41+
42+
color: globals.$ion-text-subtlest;
43+
}
44+
45+
:host(.has-value) .select-text {
46+
color: globals.$ion-text-default;
4147
}
4248

4349
// Select Label
@@ -208,6 +214,12 @@
208214

209215
.select-icon {
210216
transition: transform 0.15s globals.$ion-transition-curve-expressive;
217+
218+
color: globals.$ion-text-subtlest;
219+
}
220+
221+
:host(.has-value) .select-icon {
222+
color: globals.$ion-text-subtle;
211223
}
212224

213225
/**
@@ -219,13 +231,15 @@
219231
@include globals.transform(rotate(180deg));
220232
}
221233

222-
.select-icon {
223-
color: globals.$ion-primitives-neutral-800;
224-
}
225-
226234
// States
227235
// ----------------------------------------------------------------
228236

237+
// Fill types
238+
// ----------------------------------------------------------------
239+
:host(.select-fill-solid) {
240+
--background: #{globals.$ion-bg-input-bold-default};
241+
}
242+
229243
// Disabled
230244
// ---------------------------------------------
231245

0 commit comments

Comments
 (0)