hide node action buttons until title clicked
This commit is contained in:
parent
e0be4bad11
commit
c73cbe2f1a
2 changed files with 38 additions and 0 deletions
|
|
@ -476,6 +476,22 @@ form {
|
|||
.node-tree li > span {
|
||||
flex-shrink: 0;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.node-tree li > span:hover,
|
||||
.node-tree li.is-active > span {
|
||||
color: var(--color-primary);
|
||||
}
|
||||
|
||||
.node-tree li > button.add-child,
|
||||
.node-tree li > button.bulk-add-children {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.node-tree li.is-active > button.add-child,
|
||||
.node-tree li.is-active > button.bulk-add-children {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.node-tree li > button {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue