aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-12-07 14:42:58 +0100
committerGravatar GitHub <noreply@github.com> 2022-12-07 14:42:58 +0100
commit60ffdb0580a0461815a0792dd36d5067b7698b28 (patch)
tree44c52f1f1d82cb4df301299a342a2d5ed818b3d8
parent543fa4e76c1761154801febd08400520b75143e3 (diff)
Fix: Swage theme (#4922)
* fix link color * fix nav menu alignment
-rw-r--r--p/themes/Swage/swage.css3
-rw-r--r--p/themes/Swage/swage.rtl.css3
-rw-r--r--p/themes/Swage/swage.scss3
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;