summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-03-04 14:43:05 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-03-04 14:43:05 (GMT)
commit6c731ddf5f77247ef07f9772a9d80d7eedba9d19 (patch)
tree17b90faecde21eed87e223de2b7dd3a80a304604
parent169a67186780c191749b958de0f71a17fa090248 (diff)
downloadDoxygen-6c731ddf5f77247ef07f9772a9d80d7eedba9d19.zip
Doxygen-6c731ddf5f77247ef07f9772a9d80d7eedba9d19.tar.gz
Doxygen-6c731ddf5f77247ef07f9772a9d80d7eedba9d19.tar.bz2
secref command output shows in 1 column (HTML)
The output from the `\secref` command shows in 1 column instead of 3. The `column-count` (also possibile without `-moz` or `-webkit`) should be with the `<ul>` tag instead of the `<div>` tag
-rw-r--r--doc/doxygen_manual.css4
-rw-r--r--src/htmldocvisitor.cpp4
-rw-r--r--templates/html/doxygen.css4
3 files changed, 8 insertions, 4 deletions
diff --git a/doc/doxygen_manual.css b/doc/doxygen_manual.css
index 87d560c..1c42e1b 100644
--- a/doc/doxygen_manual.css
+++ b/doc/doxygen_manual.css
@@ -49,11 +49,13 @@ dt {
font-weight: bold;
}
-div.multicol {
+ul.multicol {
-moz-column-gap: 1em;
-webkit-column-gap: 1em;
+ column-gap: 1em;
-moz-column-count: 3;
-webkit-column-count: 3;
+ column-count: 3;
}
p.startli, p.startdd {
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp
index c0c22b8..d5fac8f 100644
--- a/src/htmldocvisitor.cpp
+++ b/src/htmldocvisitor.cpp
@@ -1873,8 +1873,8 @@ void HtmlDocVisitor::visitPre(DocSecRefList *s)
{
if (m_hide) return;
forceEndParagraph(s);
- m_t << "<div class=\"multicol\">" << endl;
- m_t << "<ul>" << endl;
+ m_t << "<div>" << endl;
+ m_t << "<ul class=\"multicol\">" << endl;
}
void HtmlDocVisitor::visitPost(DocSecRefList *s)
diff --git a/templates/html/doxygen.css b/templates/html/doxygen.css
index 92a662a..09b7aad 100644
--- a/templates/html/doxygen.css
+++ b/templates/html/doxygen.css
@@ -53,11 +53,13 @@ dt {
font-weight: bold;
}
-div.multicol {
+ul.multicol {
-moz-column-gap: 1em;
-webkit-column-gap: 1em;
+ column-gap: 1em;
-moz-column-count: 3;
-webkit-column-count: 3;
+ column-count: 3;
}
p.startli, p.startdd {