[WIKI-497] refactor: table insert handles size (#7376)

* refactor: table insert handles size

* fix: insert handles z-idnex
This commit is contained in:
Aaryan Khandelwal
2025-07-11 04:17:04 +05:30
committed by GitHub
parent bb48250467
commit fce4729f22

View File

@@ -1,6 +1,6 @@
.table-wrapper {
overflow-x: auto;
padding-bottom: 30px;
padding-bottom: 26px;
table {
position: relative;
@@ -168,7 +168,7 @@
opacity: 0;
pointer-events: none;
outline: none;
z-index: 1000;
z-index: 10;
transition: all 0.2s ease;
&:hover {
@@ -191,18 +191,20 @@
.table-column-insert-button {
top: 0;
right: -20px;
width: 20px;
right: -16px;
width: 16px;
height: 100%;
transform: translateX(50%);
cursor: col-resize;
}
.table-row-insert-button {
bottom: -20px;
bottom: -16px;
left: 0;
width: 100%;
height: 20px;
height: 16px;
transform: translateY(50%);
cursor: row-resize;
}
/* Show buttons on table hover */