Skip to content

Commit 9c30321

Browse files
provokateurinbackportbot[bot]
authored andcommitted
fix(settings): Fix select input color
Signed-off-by: provokateurin <[email protected]> [skip ci]
1 parent 9aa359b commit 9c30321

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

β€Žsrc/settings/AdminGroupSelect.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class AdminGroupSelect extends Component<AdminGroupSelectProps> {
7979
input: (provided) => ({
8080
...provided,
8181
height: '30',
82+
color: 'var(--color-main-text)',
8283
}),
8384
control: (provided) => ({
8485
...provided,

β€Žsrc/settings/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ function ManageAclSelect({ onChange, onSearch, folder }: ManageAclSelectProps) {
453453
...base,
454454
margin: 0,
455455
padding: 0,
456+
color: 'var(--color-main-text)',
456457
}),
457458
menu: (provided) => ({
458459
...provided,

β€Žsrc/settings/SubAdminGroupSelect.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ class SubAdminGroupSelect extends Component<SubAdminGroupSelectProps> {
7878
input: (provided) => ({
7979
...provided,
8080
height: '30',
81+
color: 'var(--color-main-text)',
8182
}),
8283
control: (provided) => ({
8384
...provided,

0 commit comments

Comments
Β (0)