Skip to content

Commit

Permalink
fix(settings): Fix select input color
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>

[skip ci]
  • Loading branch information
provokateurin authored and backportbot[bot] committed Dec 4, 2024
1 parent 0ab053b commit 56fa85a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/settings/AdminGroupSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ class AdminGroupSelect extends Component<AdminGroupSelectProps> {
input: (provided) => ({
...provided,
height: '30',
color: 'var(--color-main-text)',
}),
control: (provided) => ({
...provided,
Expand Down
1 change: 1 addition & 0 deletions src/settings/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ function ManageAclSelect({ onChange, onSearch, folder }: ManageAclSelectProps) {
...base,
margin: 0,
padding: 0,
color: 'var(--color-main-text)',
}),
menu: (provided) => ({
...provided,
Expand Down
1 change: 1 addition & 0 deletions src/settings/SubAdminGroupSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class SubAdminGroupSelect extends Component<SubAdminGroupSelectProps> {
input: (provided) => ({
...provided,
height: '30',
color: 'var(--color-main-text)',
}),
control: (provided) => ({
...provided,
Expand Down

0 comments on commit 56fa85a

Please sign in to comment.