Skip to content

Commit

Permalink
Merge pull request #3460 from nextcloud/fix/settings/select-input-color
Browse files Browse the repository at this point in the history
fix(settings): Fix select input color
  • Loading branch information
provokateurin authored Dec 4, 2024
2 parents acc1a93 + 704d6ff commit 2f2297c
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 @@ -445,6 +445,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 @@ -156,7 +156,7 @@ function AdminGroupSelect({ allGroups, allCircles, onChange }: CircleGroupSelect
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 2f2297c

Please sign in to comment.