Skip to content

Commit e259faa

Browse files
Merge pull request #3461 from nextcloud/backport/3460/stable28
[stable28] fix(settings): Fix select input color
2 parents 0ab053b + c355c89 commit e259faa

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

β€Žsrc/settings/AdminGroupSelect.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ class AdminGroupSelect extends Component<AdminGroupSelectProps> {
9797
input: (provided) => ({
9898
...provided,
9999
height: '30',
100+
color: 'var(--color-main-text)',
100101
}),
101102
control: (provided) => ({
102103
...provided,

β€Žsrc/settings/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,7 @@ function ManageAclSelect({ onChange, onSearch, folder }: ManageAclSelectProps) {
456456
...base,
457457
margin: 0,
458458
padding: 0,
459+
color: 'var(--color-main-text)',
459460
}),
460461
menu: (provided) => ({
461462
...provided,

β€Žsrc/settings/FolderGroups.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function AdminGroupSelect({allGroups, allCircles, onChange}: CircleGroupSelectPr
150150
input: (provided) => ({
151151
...provided,
152152
height: 30,
153-
color: 'var(--color-primary-element-text)'
153+
color: 'var(--color-main-text)',
154154
}),
155155
control: (provided) => ({
156156
...provided,

β€Žsrc/settings/SubAdminGroupSelect.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ class SubAdminGroupSelect extends Component<SubAdminGroupSelectProps> {
9595
input: (provided) => ({
9696
...provided,
9797
height: '30',
98+
color: 'var(--color-main-text)',
9899
}),
99100
control: (provided) => ({
100101
...provided,

0 commit comments

Comments
Β (0)