Files @ 5f6ccfa1f416
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
When hovering over li,anchor changes background...

.. even though you havent’t yet hovered over the link.

This change corrects that behavior. Suggested by mina86:

<mina86> so when you hover over the LI the link changes background even though
you havent’t yet hovered over the link
<mina86> #container #sidebar li:hover a { background: #577632; color: #fff; }
<mina86> s/li:hover a/li a:hover/ would be IMO better
# wsgicustom.py

import os
import sys

sys.path = ['/var/www'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()