This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
window.boot.register("page-ready", () => { | |
const pathSeparator = "/"; | |
const maxGroupsSafeGuard = 100; | |
const getNodeTitleElement = (node) => | |
node.querySelector(".v-list-item__title"); | |
const getNodeTitle = (node) => getNodeTitleElement(node).textContent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.action { | |
position: relative; | |
height: 30px; | |
&.toggled { | |
&::after { | |
content: ''; | |
position: absolute; | |
bottom: -4px; | |
left: 50%; |