Browse Source

cdb: fix flag popup being hidden when in sub-table

trethaller 4 years ago
parent
commit
c2524f018d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      bin/cdb.css
  2. 1 1
      bin/cdb.less

+ 1 - 1
bin/cdb.css

@@ -267,7 +267,7 @@
   overflow: visible;
 }
 .cdb .cdb-sheet .flagValues {
-  position: absolute;
+  position: fixed;
   background-color: #333;
   width: 150px;
   padding: 5px;

+ 1 - 1
bin/cdb.less

@@ -299,7 +299,7 @@
 		}
 
 		.flagValues {
-			position : absolute;
+			position : fixed;
 			background-color : #333;
 			width : 150px;
 			padding : 5px;