You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2020/11/30 22:08:47 UTC

[lucene-solr] branch branch_8x updated: Ref Guide: fix wrong class name in CSS to toggle the icon shown in sidebar nav when a section is open

This is an automated email from the ASF dual-hosted git repository.

ctargett pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new c4dc175  Ref Guide: fix wrong class name in CSS to toggle the icon shown in sidebar nav when a section is open
c4dc175 is described below

commit c4dc175874e7cbb21c804ba2cc1f76c89dce9738
Author: Cassandra Targett <ct...@apache.org>
AuthorDate: Mon Nov 30 15:50:13 2020 -0600

    Ref Guide: fix wrong class name in CSS to toggle the icon shown in sidebar nav when a section is open
---
 solr/solr-ref-guide/src/css/navs.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solr-ref-guide/src/css/navs.css b/solr/solr-ref-guide/src/css/navs.css
index 67273a7..b21b94c 100644
--- a/solr/solr-ref-guide/src/css/navs.css
+++ b/solr/solr-ref-guide/src/css/navs.css
@@ -177,7 +177,7 @@ ul.nav li ul {
 .nav li > a > span:after {
     content: '\25be';
 }
-.nav li.open > a > span:after {
+.nav li.active > a > span:after {
     content: '\25b4';
 }