diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-05-02 18:11:47 +0200 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-05-02 18:10:15 +0000 |
commit | 6f798b7dee825e4f893d8614b9c784b6f6fd4ceb (patch) | |
tree | c79ed890f56f5fea27080604070816cd79bd46e0 /apps | |
parent | 8f1e7118589be4fae6a5fca048a15fdfffeba7a3 (diff) | |
download | nextcloud-server-6f798b7dee825e4f893d8614b9c784b6f6fd4ceb.tar.gz nextcloud-server-6f798b7dee825e4f893d8614b9c784b6f6fd4ceb.zip |
fix(settings): Increase "Edit your profile visibility button" contrast
Before this the contrast of the button was too low in terms of accessibility.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue b/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue index 0732486ea44..be11f75b702 100644 --- a/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue +++ b/apps/settings/src/components/PersonalInfo/ProfileSection/EditProfileAnchorLink.vue @@ -74,7 +74,7 @@ a { padding: 0 16px; margin: 14px auto; border-radius: var(--border-radius-pill); - opacity: 0.4; + color: var(--color-text-maxcontrast); background-color: transparent; .anchor-icon { @@ -87,8 +87,8 @@ a { &:hover, &:focus, &:active { - opacity: 0.8; - background-color: rgba(127, 127, 127, .25); + color: var(--color-main-text); + background-color: var(--color-background-dark); } &.disabled { |