From f793b4d8557aeeb3425894c4bb7519dbacd721d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sun, 12 May 2013 13:48:56 +0200 Subject: [PATCH] style: add checkmark to subscribed newsletters --- .../themes/django-montpellier/style.css | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/compte_agglo_montpellier/static/themes/django-montpellier/style.css b/compte_agglo_montpellier/static/themes/django-montpellier/style.css index e552378..89440e7 100644 --- a/compte_agglo_montpellier/static/themes/django-montpellier/style.css +++ b/compte_agglo_montpellier/static/themes/django-montpellier/style.css @@ -319,6 +319,27 @@ body.narrow-page div.right { padding-left: 1em; } +ul.newsList { + list-style: none; +} + +ul.newsList li.abonne { + margin: 0; + padding: 0; +} + +.abonne:before { + content: "\2713 "; + width: 1em; + display: inline-block; +} + +.nonAbonne:before { + content: " "; + width: 1em; + display: inline-block; +} + .abonne { color: green; }