Explorar el Código

Editor: Limit the min-width style for `.Panels` and `.Tabs` (#22600)

linbingquan hace 3 años
padre
commit
9084c5f2fb
Se han modificado 1 ficheros con 12 adiciones y 10 borrados
  1. 12 10
      editor/css/main.css

+ 12 - 10
editor/css/main.css

@@ -74,19 +74,21 @@ textarea, input { outline: none; } /* osx */
 	position: relative;
 	display: block;
 	width: 100%;
+	min-width: 300px;
 }
 
-.TabbedPanel .Tabs .Tab {
-	padding: 10px;
-	text-transform: uppercase;
-}
+	.TabbedPanel .Tabs .Tab {
+		padding: 10px;
+		text-transform: uppercase;
+	}
 
-.TabbedPanel .Tabs .Panels {
-	position: relative;
-	display: block;
-	width: 100%;
-	height: 100%;
-}
+	.TabbedPanel .Panels {
+		position: relative;
+		display: block;
+		width: 100%;
+		height: 100%;
+		min-width: 300px;
+	}
 
 /* Listbox */
 .Listbox {