Skip to content

Commit b15becd

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

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
@@ -97,6 +97,7 @@ class AdminGroupSelect extends Component<AdminGroupSelectProps> {
9797
input: (provided) => ({
9898
...provided,
9999
height: '30',
100+
color: 'var(--color-main-text)',
100101
}),
101102
control: (provided) => ({
102103
...provided,

β€Žsrc/settings/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,7 @@ function ManageAclSelect({ onChange, onSearch, folder }: ManageAclSelectProps) {
456456
...base,
457457
margin: 0,
458458
padding: 0,
459+
color: 'var(--color-main-text)',
459460
}),
460461
menu: (provided) => ({
461462
...provided,

β€Žsrc/settings/SubAdminGroupSelect.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ class SubAdminGroupSelect extends Component<SubAdminGroupSelectProps> {
9595
input: (provided) => ({
9696
...provided,
9797
height: '30',
98+
color: 'var(--color-main-text)',
9899
}),
99100
control: (provided) => ({
100101
...provided,

0 commit comments

Comments
Β (0)