When selecting a topic in the Table of Contents or What`s in this section list the topic can be highlighted, for example, with a different color or outline.
When selecting a topic in the Table of Contents or What`s in this section list the topic can be highlighted, for example, with a different color or outline.
To highlight the TOC and What`s in this section selection:
ul.jqtree-tree li.jqtree-selected > .jqtree-element > .jqtree-title {
Where:
Add a box with shadow around the selection: | Add a color and weighting to the text of the selection: |
border-radius: 2px; border: 1px solid var(--light-gray-color); box-shadow: 1px 1px 3px 1px var(--light-gray-color); | color: red !important; font-weight: 600; font-size:15px; |
/* text for selected item */
ul.jqtree-tree li.jqtree-selected > .jqtree-element > .jqtree-title {
border-radius: 2px;
border: 1px solid var(--light-gray-color);
box-shadow: 1px 1px 3px 1px var(--light-gray-color);
color: red !important;
font-weight: 600;
font-size:15px;
}