Browse Source

Fix color cells going over the column name (#163) (#167)

Leonardo Jeanteur 4 năm trước cách đây
mục cha
commit
904f310eb1
4 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 1 1
      bin/cdb.css
  2. 1 1
      bin/cdb.less
  3. 1 1
      bin/style.css
  4. 1 1
      bin/style.less

+ 1 - 1
bin/cdb.css

@@ -128,7 +128,7 @@
 }
 .cdb .cdb-sheet:not(.cdb-sub-sheet) > thead.head > th {
   position: sticky;
-  z-index: 1;
+  z-index: 10;
   top: 0;
 }
 .cdb .cdb-sheet tr.head,

+ 1 - 1
bin/cdb.less

@@ -141,7 +141,7 @@
 
 		&:not(.cdb-sub-sheet) > thead.head > th {
 			position: sticky;
-			z-index: 1;
+			z-index: 10;
 			top: 0;
 		}
 

+ 1 - 1
bin/style.css

@@ -525,7 +525,7 @@ input[type=checkbox]:checked:after {
   bottom: 0px;
   padding-top: 0px;
   padding-bottom: 5px;
-  z-index: 1;
+  z-index: 10;
 }
 .hide-tabs.tabs-bottom > .tabs-header > div {
   border-top: none;

+ 1 - 1
bin/style.less

@@ -583,7 +583,7 @@ input[type=checkbox] {
 		bottom : 0px;
 		padding-top : 0px;
 		padding-bottom : 5px;
-		z-index: 1;
+		z-index: 10;
 		&>div {
 			border-top : none;
 			border-top-right-radius: 0;