logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: dc631c68fde12fef499c4b26c9a29e38c23357de
parent b10458e3a31fc93dbffd0473e41d9eaf17c2a0df
Author: Henry Jameson <me@hjkos.com>
Date:   Mon,  4 Mar 2024 22:31:40 +0200

fix some mistakes

Diffstat:

Msrc/components/chat_list_item/chat_list_item.scss6+++---
Msrc/components/settings_modal/tabs/theme_tab/preview.vue2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/components/chat_list_item/chat_list_item.scss b/src/components/chat_list_item/chat_list_item.scss @@ -10,7 +10,7 @@ } &:hover { - box-shadow: 0 0 3px 1px rgb(0 0 0 / 10%); + box-shadow: var(--shadow) } .chat-list-item-left { @@ -49,12 +49,12 @@ white-space: nowrap; text-overflow: ellipsis; margin: 0.35em 0; - color: var(--faintText); + color: var(--textFaint); width: 100%; } a { - color: var(--faintLink); + color: var(--linkFaint); text-decoration: none; pointer-events: none; } diff --git a/src/components/settings_modal/tabs/theme_tab/preview.vue b/src/components/settings_modal/tabs/theme_tab/preview.vue @@ -81,7 +81,7 @@ class="faint" scope="global" > - <a style="color: var(--faintLink);"> + <a style="color: var(--linkFaint);"> {{ $t('settings.style.preview.faint_link') }} </a> </i18n-t>