Browse Source

[model] Fix toolbar disapearing

Clément Espeute 4 days ago
parent
commit
14878d609d
2 changed files with 10 additions and 0 deletions
  1. 5 0
      bin/style.css
  2. 5 0
      bin/style.less

+ 5 - 0
bin/style.css

@@ -348,6 +348,8 @@ input[type=checkbox].indeterminate:after {
   max-height: 100%;
   overflow: auto;
   position: relative;
+  min-width: 0;
+  min-height: 0;
 }
 .hide-modal {
   position: fixed;
@@ -601,6 +603,8 @@ input[type=checkbox].indeterminate:after {
 .flex-elt {
   flex: 1;
   display: flex;
+  min-height: 0;
+  min-width: 0;
 }
 .flex.vertical {
   flex-direction: column;
@@ -1013,6 +1017,7 @@ input[type=checkbox].indeterminate:after {
 .hide-tabs .tab.expand {
   width: 100%;
   height: 100%;
+  overflow-y: auto;
 }
 .hide-tabs.tabs-bottom > .tabs-header {
   order: 9999;

+ 5 - 0
bin/style.less

@@ -374,6 +374,8 @@ input[type=checkbox] {
 	max-height : 100%;
 	overflow : auto;
 	position: relative;
+	min-width: 0;
+	min-height: 0;
 }
 
 .hide-modal {
@@ -676,6 +678,8 @@ input[type=checkbox] {
 .flex-elt {
 	flex: 1;
 	display: flex;
+	min-height: 0;
+	min-width: 0;
 }
 
 .flex.vertical {
@@ -1095,6 +1099,7 @@ input[type=checkbox] {
 		&.expand {
 			width: 100%;
 			height: 100%;
+			overflow-y: auto;
 		}
 	}
 }