mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
[WIKI-497] refactor: table insert handles size (#7376)
* refactor: table insert handles size * fix: insert handles z-idnex
This commit is contained in:
committed by
GitHub
parent
bb48250467
commit
fce4729f22
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user