doxygen.mk, header.html, styles.css: Make doxygen logo appear in top right corner

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2016-02-11 21:23:57 +00:00
commit 866d05c1be
3 changed files with 17 additions and 10 deletions

View file

@ -99,14 +99,14 @@ doxygen-default-includes.done: $(DX_DOXYGEN_CONF)
touch $@
header.html: $(DX_INCLUDE_TMPL_DIR)/header.html doxygen-default-includes.done
cat default-$@ $< > $@.tmp
cat default-$@ | sed -ne "/<\/tr>/r $<" -e 1x -e '2,$${x;p}' -e '$${x;p}' > $@.tmp
mv $@.tmp $@
footer.html: $(DX_INCLUDE_TMPL_DIR)/footer.html doxygen-default-includes.done
cat $< default-$@ > $@.tmp
mv $@.tmp $@
styles.css: $(DX_INCLUDE_TMPL_DIR)/footer.html doxygen-default-includes.done
styles.css: $(DX_INCLUDE_TMPL_DIR)/styles.css doxygen-default-includes.done
cat default-$@ $< > $@.tmp
mv $@.tmp $@

View file

@ -1,11 +1,6 @@
<!-- start janware generated header -->
<table width="100%">
<tr>
<td>
<p id="de_headbar" align="right">
<img src="logo.png">
</p>
<td style="text-align: right;">
<img id="logo" src="logo.png">
</td>
</tr>
</table>
<!-- end janware generated header -->

View file

@ -0,0 +1,12 @@
#logo {
text-align: right;
}
#titlearea > table {
width: 100%;
}
#titlearea {
/* background-color: #00FF00; */
}