feature: expandable rows

add: comments
This commit is contained in:
2024-02-01 17:29:30 +08:00
parent 24b5a22595
commit 5d199a2bfb
5 changed files with 574 additions and 111 deletions

View File

@ -283,6 +283,22 @@
background-color: var(--row-bg-color);
}
&.ui-expandable {
&>svg {
width: 24px;
height: 34px;
padding: 8px 3px;
box-sizing: border-box;
display: block;
cursor: pointer;
transition: opacity .12s ease;
&:hover {
opacity: .4;
}
}
}
>span {
padding: var(--spacing-cell);
display: block;
@ -402,6 +418,7 @@
white-space: pre;
display: flex;
align-items: center;
overflow: hidden;
visibility: hidden;
opacity: 0;
transition: visibility 0s linear .12s, opacity .12s ease;