diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-12-21 14:58:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 14:58:42 +0100 |
commit | e454bf49c3ddc28d8566beabd673bbae89dbccef (patch) | |
tree | 95fd7fa65526785850c857322e55aab1f290f79e /apps | |
parent | c6a19f88f247214b88d0056900942430ce06253c (diff) | |
parent | b08805f0f0f35aff9506259e0022d44466c10950 (diff) | |
download | nextcloud-server-e454bf49c3ddc28d8566beabd673bbae89dbccef.tar.gz nextcloud-server-e454bf49c3ddc28d8566beabd673bbae89dbccef.zip |
Merge pull request #42404 from nextcloud/backport/42401/stable27
[stable27] fix: Ensure app menu entries and dashboard welcome message have enough contrast
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dashboard/src/DashboardApp.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dashboard/src/DashboardApp.vue b/apps/dashboard/src/DashboardApp.vue index ffdf368cb2c..733ce104569 100644 --- a/apps/dashboard/src/DashboardApp.vue +++ b/apps/dashboard/src/DashboardApp.vue @@ -465,7 +465,8 @@ export default { background-attachment: fixed; > h2 { - color: var(--color-primary-element-text); + // this is shown directly on the background which has `color-primary`, so we need `color-primary-text` + color: var(--color-primary-text); text-align: center; font-size: 32px; line-height: 130%; |