Changeset - 52ff9eb063f4
[Not reviewed]
0 1 0
Joshua Simmons - 6 years ago 2017-11-14 04:19:09
i@joshuasimmons.name
css selector for hiding nav items in wiki wasn't specific enough. oops
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/wiki/base.html
Show inline comments
...
 
@@ -10,9 +10,9 @@
 
        <link rel="stylesheet" type="text/x-scss" href="{% static "scss/site.scss" %}">
 

	
 
        <style type="text/css">
 
        div.navbar ul.nav.navbar-nav li:nth-child(1), /* about */
 
        div.navbar ul.nav.navbar-nav li:nth-child(4), /* sponsors */
 
        div.navbar ul.nav.navbar-nav li:nth-child(5)  /* news */ {
 
          div.navbar ul.nav.navbar-nav > li:nth-child(1), /* about */
 
          div.navbar ul.nav.navbar-nav > li:nth-child(4), /* sponsors */
 
          div.navbar ul.nav.navbar-nav > li:nth-child(5)  /* news */ {
 
            display: none;
 
          }
 
        </style>
0 comments (0 inline, 0 general)