소스 검색

Dropdown menu max-height (#3102)

Reduce it on big screens
Alexandre Alapetite 6 년 전
부모
커밋
f98a092566
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      p/themes/base-theme/template.css
  2. 1 1
      p/themes/base-theme/template.rtl.css

+ 1 - 1
p/themes/base-theme/template.css

@@ -304,7 +304,7 @@ a.btn {
 }
 
 .dropdown-menu-scrollable {
-	max-height: 75vh;
+	max-height: min(75vh, 50em);
 	overflow-x: hidden;
 	overflow-y: auto;
 }

+ 1 - 1
p/themes/base-theme/template.rtl.css

@@ -304,7 +304,7 @@ a.btn {
 }
 
 .dropdown-menu-scrollable {
-	max-height: 75vh;
+	max-height: min(75vh, 50em);
 	overflow-x: hidden;
 	overflow-y: auto;
 }