Created
April 3, 2021 07:37
-
-
Save SuryaSankar/9f4c87adb2028fcd2dcb8a7fca19b931 to your computer and use it in GitHub Desktop.
listree-lib-css
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
.listree-submenu-heading { | |
cursor: pointer; | |
} | |
ul.listree { | |
list-style: none; | |
} | |
ul.listree-submenu-items { | |
list-style: none; | |
border-left: 1px dashed black; | |
white-space: nowrap; | |
margin-right: 4px; | |
padding-left: 20px; | |
} | |
div.listree-submenu-heading.collapsed:before { | |
content: "+"; | |
margin-right: 4px; | |
} | |
div.listree-submenu-heading.expanded:before { | |
content: "-"; | |
margin-right: 4px; | |
} | |
.scrollable-menu { | |
height: auto; | |
max-width: 800px; | |
overflow-y: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment