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]>
  • Loading branch information
provokateurin committed Dec 4, 2024
1 parent 9aa359b commit 2ff99cb
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 @@ -79,6 +79,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 @@ -453,6 +453,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 @@ -154,7 +154,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 @@ -78,6 +78,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 2ff99cb

Please sign in to comment.