aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-08-19 11:09:32 +0200
committerGravatar GitHub <noreply@github.com> 2022-08-19 11:09:32 +0200
commit8f475523f52101f818dd4cb9ab22b5429ab39287 (patch)
treed039f9b7bbcfeab100444d81f429f602c5cc23c4
parenta3a0b2f97a780605338eec8c5c833d5f7d6f823b (diff)
fixed (#4512)
-rw-r--r--p/themes/Swage/swage.css6
-rw-r--r--p/themes/Swage/swage.rtl.css6
-rw-r--r--p/themes/Swage/swage.scss9
3 files changed, 17 insertions, 4 deletions
diff --git a/p/themes/Swage/swage.css b/p/themes/Swage/swage.css
index f6e1dbbb7..19750628c 100644
--- a/p/themes/Swage/swage.css
+++ b/p/themes/Swage/swage.css
@@ -671,7 +671,11 @@ form th {
margin-right: 5px;
margin-top: 3px;
}
-.header .item.configure .dropdown .icon {
+.header .item.configure .dropdown .dropdown-menu {
+ max-height: calc(100vh - 45px);
+ overflow: scroll;
+}
+.header .item.configure .dropdown .dropdown-menu .icon {
filter: brightness(3);
}
diff --git a/p/themes/Swage/swage.rtl.css b/p/themes/Swage/swage.rtl.css
index e55c10f68..022b66a28 100644
--- a/p/themes/Swage/swage.rtl.css
+++ b/p/themes/Swage/swage.rtl.css
@@ -671,7 +671,11 @@ form th {
margin-left: 5px;
margin-top: 3px;
}
-.header .item.configure .dropdown .icon {
+.header .item.configure .dropdown .dropdown-menu {
+ max-height: calc(100vh - 45px);
+ overflow: scroll;
+}
+.header .item.configure .dropdown .dropdown-menu .icon {
filter: brightness(3);
}
diff --git a/p/themes/Swage/swage.scss b/p/themes/Swage/swage.scss
index f1503d494..f7a128242 100644
--- a/p/themes/Swage/swage.scss
+++ b/p/themes/Swage/swage.scss
@@ -838,8 +838,13 @@ form {
margin-top: 3px;
}
- .dropdown .icon {
- filter: brightness(3);
+ .dropdown .dropdown-menu {
+ max-height: calc(100vh - 45px);
+ overflow: scroll;
+
+ .icon {
+ filter: brightness(3);
+ }
}
}
}