Skip to content

Commit

Permalink
Merge pull request #3461 from nextcloud/backport/3460/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(settings): Fix select input color
  • Loading branch information
provokateurin authored Dec 4, 2024
2 parents 0ab053b + c355c89 commit e259faa
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 e259faa

Please sign in to comment.