diff options
author | albert-github <albert.tests@gmail.com> | 2019-03-04 14:43:05 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-03-04 14:43:05 (GMT) |
commit | 6c731ddf5f77247ef07f9772a9d80d7eedba9d19 (patch) | |
tree | 17b90faecde21eed87e223de2b7dd3a80a304604 /templates | |
parent | 169a67186780c191749b958de0f71a17fa090248 (diff) | |
download | Doxygen-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
Diffstat (limited to 'templates')
-rw-r--r-- | templates/html/doxygen.css | 4 |
1 files changed, 3 insertions, 1 deletions
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 { |