Skip to content

Commit

Permalink
issue #8738 Fixed sizes in project area of HTML output
Browse files Browse the repository at this point in the history
In respect to the project area of the doxygen HTML output a number of items were coded with `style=` in the , user changeable, `header.html` and others were coded through settings in the, user changeable, `doxygen.css`.
This has been made consistent so all runs through the css.
  • Loading branch information
albert-github committed Aug 29, 2021
1 parent 0b13cc6 commit 815aebc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions templates/html/doxygen.css
Expand Up @@ -1356,6 +1356,11 @@ dl.section dd {
}


#projectrow
{
height: 56px;
}

#projectlogo
{
text-align: center;
Expand All @@ -1371,6 +1376,7 @@ dl.section dd {
#projectalign
{
vertical-align: middle;
padding-left: 0.5em;
}

#projectname
Expand Down
6 changes: 3 additions & 3 deletions templates/html/header.html
Expand Up @@ -34,20 +34,20 @@
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<tr id="projectrow">
<!--BEGIN PROJECT_LOGO-->
<td id="projectlogo"><img alt="Logo" src="$relpath^$projectlogo"/></td>
<!--END PROJECT_LOGO-->
<!--BEGIN PROJECT_NAME-->
<td id="projectalign" style="padding-left: 0.5em;">
<td id="projectalign">
<div id="projectname">$projectname<!--BEGIN PROJECT_NUMBER--><span id="projectnumber">&#160;$projectnumber</span><!--END PROJECT_NUMBER-->
</div>
<!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
</td>
<!--END PROJECT_NAME-->
<!--BEGIN !PROJECT_NAME-->
<!--BEGIN PROJECT_BRIEF-->
<td style="padding-left: 0.5em;">
<td>
<div id="projectbrief">$projectbrief</div>
</td>
<!--END PROJECT_BRIEF-->
Expand Down
4 changes: 2 additions & 2 deletions templates/html/htmlbase.tpl
Expand Up @@ -91,11 +91,11 @@ MathJax.Hub.Config({
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<tr id="projectrow">
{% if config.PROJECT_LOGO %}
<td id="projectlogo"><img alt="Logo" src="{{ page.relPath }}{{ config.PROJECT_LOGO|stripPath }}"/></td>
{% endif %}
<td id="projectalign" style="padding-left: 0.5em;">
<td id="projectalign">
{% if config.PROJECT_NAME %}
<div id="projectname">{{ config.PROJECT_NAME }}{% if config.PROJECT_NUMBER %}<span id="projectnumber">&#160;{{ config.PROJECT_NUMBER }}</span>{% endif %}
</div>
Expand Down

0 comments on commit 815aebc

Please sign in to comment.