Unfortunately updating parents styles when something is done to children* is not possible in pure CSS. And currently dynalist also doesnât mark Node-outer in any way when youâre working on nodes within it. But I think it can be done with custom JavaScript code injected through https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo . I might play with it in the future, itâs a nice idea.
*It can only work with âhoverâ event, but itâs not good enough I suppose:
.is-currentRoot > .Node-children > .Node-childrenInner:hover > .Node-outer {
opacity: .2;
transition: 1.5s;
}
.is-currentRoot > .Node-children > .Node-childrenInner > .Node-outer:hover {
opacity: 1;
}