From: Marek Stępniowski <marek@stepniowski.com>
Date: Thu, 18 Sep 2008 11:47:14 +0000 (+0200)
Subject: Fixed a bug in reader where numbered anchors were indented if they were attached... 
X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/0d8379f12396769a2238c6c9e25532db6434b818

Fixed a bug in reader where numbered anchors were indented if they were attached to indented verses.
---

diff --git a/wolnelektury/media/css/master.book.css b/wolnelektury/media/css/master.book.css
index d8ffe492d..47e4f36eb 100644
--- a/wolnelektury/media/css/master.book.css
+++ b/wolnelektury/media/css/master.book.css
@@ -192,13 +192,15 @@ blockquote {
 /* = Numbering = */
 /* ============= */
 .anchor {
-    float: left;
-    margin: -0.2em -0.5em -0.2em -3.5em;
+    position: absolute;
+    margin: -0.25em -0.5em;
+    left: 1em;
     color: #777;
     font-size: 12px;
     width: 2em;
     text-align: center;
-    padding: 0.2em 0.5em;
+    padding: 0.25em 0.5em;
+    line-height: 1.5em;
 }
 
 .anchor:hover, #book-text .anchor:active {