浏览代码

Editor: Allow menubar scrolling on small screens.

Mr.doob 8 年之前
父节点
当前提交
fd61ecbf58
共有 2 个文件被更改,包括 6 次插入2 次删除
  1. 3 1
      editor/css/dark.css
  2. 3 1
      editor/css/light.css

+ 3 - 1
editor/css/dark.css

@@ -110,11 +110,13 @@ select {
 		}
 
 		#menubar .menu .options {
-			position: absolute;
+			position: fixed;
 			display: none;
 			padding: 5px 0;
 			background: #111;
 			width: 150px;
+			max-height: calc(100% - 80px);
+			overflow: auto;
 		}
 
 		#menubar .menu:hover .options {

+ 3 - 1
editor/css/light.css

@@ -106,11 +106,13 @@ select {
 		}
 
 		#menubar .menu .options {
-			position: absolute;
+			position: fixed;
 			display: none;
 			padding: 5px 0;
 			background: #eee;
 			width: 150px;
+			max-height: calc(100% - 80px);
+			overflow: auto;
 		}
 
 		#menubar .menu:hover .options {