diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-05-04 12:24:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 12:24:43 +0200 |
commit | 593880822914a84828f52aa369a11b5b0ef7d1b1 (patch) | |
tree | 1c2affe80638477e5945a2f9d250d8babe8f45a1 /apps/settings | |
parent | 1a00d99015d352d3856d0a8c2748abd1b709156a (diff) | |
parent | 6f798b7dee825e4f893d8614b9c784b6f6fd4ceb (diff) | |
download | nextcloud-server-593880822914a84828f52aa369a11b5b0ef7d1b1.tar.gz nextcloud-server-593880822914a84828f52aa369a11b5b0ef7d1b1.zip |
Merge pull request #38028 from nextcloud/fix/36958
fix(settings): Increase "Edit your profile visibility button" contrast
Diffstat (limited to 'apps/settings')
-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 { |