Skip to content

Commit

Permalink
Fix for "No 'selected node' or 'hover' highlight when rendering index…
Browse files Browse the repository at this point in the history
…menu in a sidebar" #84
  • Loading branch information
bkidwell committed May 14, 2014
1 parent 5c73f3d commit d8d19c6
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions style.css
Expand Up @@ -32,7 +32,12 @@
/*Properties that can be edit*/

/*Link properties*/
.dtree a {
.dokuwiki .dtree a,
.dokuwiki .aside .dtree a,
.dokuwiki .dtree a:visited,
.dokuwiki .aside .dtree a:visited,
.dokuwiki .dtree a:link,
.dokuwiki .aside .dtree a:link {
color: __existing__;
text-decoration: none;
}
Expand All @@ -49,7 +54,8 @@
}

/* Current page highlighting*/
.dtree a.navSel {
.dokuwiki .dtree a.navSel,
.dokuwiki .aside .dtree a.navSel {
background-color: __highlight__;
}

Expand Down Expand Up @@ -79,7 +85,10 @@ div.dokuwiki div.indexmenu_list_themes {
}

/*Mouseover property*/
.dtree a.nodeFdUrl:hover, .dtree a.nodeSel:hover, a.navSel:hover, .dtree a.nodeUrl:hover {
.dokuwiki .dtree a.nodeFdUrl:hover,
.dokuwiki .dtree a.nodeSel:hover,
.dokuwiki a.navSel:hover,
.dokuwiki .dtree a.nodeUrl:hover {
color: __existing__;
text-decoration: underline;
background-color: __background_alt__;
Expand Down

0 comments on commit d8d19c6

Please sign in to comment.