Procházet zdrojové kódy

bugfix: Output width in chrome (#345)

James Read před 2 roky
rodič
revize
a1adc2a85d
1 změnil soubory, kde provedl 12 přidání a 1 odebrání
  1. 12 1
      webui.dev/style.css

+ 12 - 1
webui.dev/style.css

@@ -223,6 +223,7 @@ div.entity h2 {
 
 details {
   display: inline-block;
+  flex-grow: 1;
 }
 
 details[open] {
@@ -464,8 +465,18 @@ div.display {
   font-size: small;
 }
 
+#execution-dialog-output {
+  display: flex;
+  flex-direction: row;
+  justify-content: start;
+}
+
 #execution-dialog-xterm {
-  overflow: scroll;
+  overflow: auto;
+}
+
+.xterm .xterm-viewport {
+  overflow-y: auto !important;
 }
 
 .padded-content {