From 60ffdb0580a0461815a0792dd36d5067b7698b28 Mon Sep 17 00:00:00 2001 From: maTh Date: Wed, 7 Dec 2022 14:42:58 +0100 Subject: [PATCH] Fix: Swage theme (#4922) * fix link color * fix nav menu alignment --- p/themes/Swage/swage.css | 3 ++- p/themes/Swage/swage.rtl.css | 3 ++- p/themes/Swage/swage.scss | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/p/themes/Swage/swage.css b/p/themes/Swage/swage.css index 4f5811144..cb7cd6116 100644 --- a/p/themes/Swage/swage.css +++ b/p/themes/Swage/swage.css @@ -87,7 +87,7 @@ body { } a { - color: var(--color-nav-lighter); + color: var(--color-text-nav); outline: none; } a.btn { @@ -719,6 +719,7 @@ form th { width: 100%; font-size: 0; background-color: var(--color-background-nav); + text-align: left; position: sticky; top: 0; z-index: 90; diff --git a/p/themes/Swage/swage.rtl.css b/p/themes/Swage/swage.rtl.css index 32367ee96..5085e1061 100644 --- a/p/themes/Swage/swage.rtl.css +++ b/p/themes/Swage/swage.rtl.css @@ -87,7 +87,7 @@ body { } a { - color: var(--color-nav-lighter); + color: var(--color-text-nav); outline: none; } a.btn { @@ -719,6 +719,7 @@ form th { width: 100%; font-size: 0; background-color: var(--color-background-nav); + text-align: right; position: sticky; top: 0; z-index: 90; diff --git a/p/themes/Swage/swage.scss b/p/themes/Swage/swage.scss index 9d205b7c4..a11d0c760 100644 --- a/p/themes/Swage/swage.scss +++ b/p/themes/Swage/swage.scss @@ -106,7 +106,7 @@ body { } a { - color: var(--color-nav-lighter); + color: var(--color-text-nav); outline: none; &.btn { @@ -931,6 +931,7 @@ form { width: 100%; font-size: 0; background-color: var(--color-background-nav); + text-align: left; position: sticky; top: 0; z-index: 90;