]> git.0d.be Git - panikdb.git/commitdiff
change header title link formatting
authorFrédéric Péters <fpeters@0d.be>
Sun, 8 Sep 2013 19:17:20 +0000 (21:17 +0200)
committerFrédéric Péters <fpeters@0d.be>
Sun, 8 Sep 2013 19:17:20 +0000 (21:17 +0200)
panikdb/static/css/style.css
panikdb/templates/home.html

index befca60dfd42ed430a5898ea1fb5f67970e24db6..694e1c985f60b2a1b075bca516ad2de16db06bb5 100644 (file)
@@ -170,6 +170,16 @@ div#content h2 {
        clear: both;
 }
 
+div#content h2 a {
+       color: inherit;
+       text-decoration: inherit;
+}
+
+div#content h2 a:hover {
+       color: #FF7800;
+       text-decoration: underline;
+}
+
 div#content ul {
        line-height: 1.5em;
        padding: 1ex 2ex 1ex 3ex;
index ed6bb3350b7411134da51982e79c612d5facdb29..9edc9c4ae3b6655311451e90ed2f6414cd082087 100644 (file)
@@ -3,7 +3,7 @@
 {% block content %}
 
 {% for emission in emissions %}
-<h2>{{ emission.title }} <a href="{% url 'emission-view' slug=emission.slug %}" class="icon-eye-open"></a></h2>
+<h2><a href="{% url 'emission-view' slug=emission.slug %}">{{ emission.title }}</a></h2>
 
 <a class="big-friendly-button" href="{% url 'episode-add' emission_slug=emission.slug %}">Ajouter un épisode</a>