From 5aa83d4e5568157d581122e4f4670e604c46c13a Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 11 Aug 2020 13:26:19 +0200 Subject: Layout on the bibliography page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When having a bit a long citation description, the description runs, in the HTML output on the bibliography page, into 3 or more lines where the 3rd and following lines continue underneath the citation number like: ``` [1] Eric Berberich, Arno Eigenwillig, Michael Hemmer, Susan Hert, Lutz Kettner, Kurt Mehlhorn, Joachim Reichel, Susanne Schmitt, Elmar Schömer, and Nicola Wolpert. Exacus: Efficient and exact algorithms for curves and surfaces. In Gerth S. Brodal and Stefano Leonardi, editors, 13th Annual European Symposium on Algorithms (ESA 2005), volume 3669 of Lecture Notes in Computer Science, pages 155–166, Palma de Mallorca, Spain, October 2005. European Association for Theoretical Computer Science (EATCS), Springer. ``` The example was found in the CGAL repository - corrected the "overflow" - made the citation number right aligned --- templates/html/doxygen.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/html/doxygen.css b/templates/html/doxygen.css index 30eb1ac..141d418 100644 --- a/templates/html/doxygen.css +++ b/templates/html/doxygen.css @@ -1358,10 +1358,12 @@ dl.citelist dt { font-weight:bold; margin-right:10px; padding:5px; + text-align:right; + width:52px; } dl.citelist dd { - margin:2px 0; + margin:2px 0 2px 72px; padding:5px 0; } -- cgit v0.12