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 7 insertions and 7 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/wiki/base.html
Show inline comments
...
 
@@ -9,13 +9,13 @@
 
    {% compress css %}
 
        <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 */ {
 
          display: none;
 
        }
 
      </style>
 
        <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 */ {
 
            display: none;
 
          }
 
        </style>
 
    {% endcompress %}
 
  {% endaddtoblock %}
 

	
0 comments (0 inline, 0 general)