aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2023-05-04 12:24:43 +0200
committerGitHub <noreply@github.com>2023-05-04 12:24:43 +0200
commit593880822914a84828f52aa369a11b5b0ef7d1b1 (patch)
tree1c2affe80638477e5945a2f9d250d8babe8f45a1 /apps/settings
parent1a00d99015d352d3856d0a8c2748abd1b709156a (diff)
parent6f798b7dee825e4f893d8614b9c784b6f6fd4ceb (diff)
downloadnextcloud-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.vue6
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 {