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 <kate@provokateurin.de>
  • Loading branch information
provokateurin committed Dec 4, 2024
1 parent 0ab053b commit c355c89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion src/settings/FolderGroups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function AdminGroupSelect({allGroups, allCircles, onChange}: CircleGroupSelectPr
input: (provided) => ({
...provided,
height: 30,
color: 'var(--color-primary-element-text)'
color: 'var(--color-main-text)',
}),
control: (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 c355c89

Please sign in to comment.