summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-08-11 11:26:19 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-08-11 11:26:19 (GMT)
commit5aa83d4e5568157d581122e4f4670e604c46c13a (patch)
tree76bb139e280bf85be0276538d2aad0e9d7ad4c38 /templates
parent047adfbbc66eaa432ec9cea00e3801e3b4e1bca8 (diff)
downloadDoxygen-5aa83d4e5568157d581122e4f4670e604c46c13a.zip
Doxygen-5aa83d4e5568157d581122e4f4670e604c46c13a.tar.gz
Doxygen-5aa83d4e5568157d581122e4f4670e604c46c13a.tar.bz2
Layout on the bibliography page
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
Diffstat (limited to 'templates')
-rw-r--r--templates/html/doxygen.css4
1 files changed, 3 insertions, 1 deletions
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;
}