maTh il y a 3 ans
Parent
commit
8f475523f5
3 fichiers modifiés avec 17 ajouts et 4 suppressions
  1. 5 1
      p/themes/Swage/swage.css
  2. 5 1
      p/themes/Swage/swage.rtl.css
  3. 7 2
      p/themes/Swage/swage.scss

+ 5 - 1
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);
 }
 

+ 5 - 1
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);
 }
 

+ 7 - 2
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);
+			}
 		}
 	}
 }