aboutsummaryrefslogtreecommitdiff
path: root/p/themes/Swage
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2023-04-15 21:13:56 +0200
committerGravatar GitHub <noreply@github.com> 2023-04-15 21:13:56 +0200
commit789c44b50222a24c565c783dbaf53d6ae465fc1d (patch)
treec1fc9cda11c5ceacc25e2e6b39cafd0d0fd87f93 /p/themes/Swage
parenta19b56064d74ae871abd52903778e0d5c35af896 (diff)
Improved: global view: mobile view (#5297)
* improved overlay + visible close button * duplicate of line 2109 * delete #panel .close from frss.css * set background colors in each theme * fix Ansum and Mapco theme * fix Nord theme * frss.css * only 1 scroll bar * fix the closer background in some themes * fix scrolling * fix fix
Diffstat (limited to 'p/themes/Swage')
-rw-r--r--p/themes/Swage/swage.css11
-rw-r--r--p/themes/Swage/swage.rtl.css9
-rw-r--r--p/themes/Swage/swage.scss6
3 files changed, 19 insertions, 7 deletions
diff --git a/p/themes/Swage/swage.css b/p/themes/Swage/swage.css
index 618bc64b3..96f38aa87 100644
--- a/p/themes/Swage/swage.css
+++ b/p/themes/Swage/swage.css
@@ -865,6 +865,9 @@ form th {
#overlay {
z-index: 100;
}
+#overlay .close .icon {
+ filter: brightness(3);
+}
#panel {
z-index: 100;
@@ -1014,7 +1017,7 @@ a.signin {
.nav_menu .item.search input {
width: 100%;
}
- #panel .close,
+ #overlay .close,
.dropdown-menu .toggle_aside {
background-color: var(--color-background-aside);
display: block;
@@ -1023,7 +1026,7 @@ a.signin {
text-align: center;
padding-right: 10px;
}
- #panel .close:hover,
+ #overlay .close:hover,
.dropdown-menu .toggle_aside:hover {
background-color: var(--color-background-nav);
}
@@ -1184,4 +1187,6 @@ button.as-link {
#slider label {
min-height: initial;
-} \ No newline at end of file
+}
+
+/*# sourceMappingURL=swage.css.map */
diff --git a/p/themes/Swage/swage.rtl.css b/p/themes/Swage/swage.rtl.css
index 3ac5982ae..4d3e3a616 100644
--- a/p/themes/Swage/swage.rtl.css
+++ b/p/themes/Swage/swage.rtl.css
@@ -865,6 +865,9 @@ form th {
#overlay {
z-index: 100;
}
+#overlay .close .icon {
+ filter: brightness(3);
+}
#panel {
z-index: 100;
@@ -1014,7 +1017,7 @@ a.signin {
.nav_menu .item.search input {
width: 100%;
}
- #panel .close,
+ #overlay .close,
.dropdown-menu .toggle_aside {
background-color: var(--color-background-aside);
display: block;
@@ -1023,7 +1026,7 @@ a.signin {
text-align: center;
padding-left: 10px;
}
- #panel .close:hover,
+ #overlay .close:hover,
.dropdown-menu .toggle_aside:hover {
background-color: var(--color-background-nav);
}
@@ -1184,4 +1187,4 @@ button.as-link {
#slider label {
min-height: initial;
-} \ No newline at end of file
+}
diff --git a/p/themes/Swage/swage.scss b/p/themes/Swage/swage.scss
index 0c926aaec..667203d99 100644
--- a/p/themes/Swage/swage.scss
+++ b/p/themes/Swage/swage.scss
@@ -1111,6 +1111,10 @@ form {
#overlay {
z-index: 100;
+
+ .close .icon {
+ filter: brightness(3);
+ }
}
#panel {
@@ -1304,7 +1308,7 @@ a.signin {
}
}
- #panel .close,
+ #overlay .close,
.dropdown-menu .toggle_aside {
background-color: var(--color-background-aside);
display: block;