web-user-interface: Replace the old tux logo with out new word mark

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2024-01-10 12:23:15 +00:00
parent dbf1d1634b
commit 0e415928b7
4 changed files with 13 additions and 11 deletions

View File

@@ -344,7 +344,6 @@ srv/web/ipfire/html/redirect-templates/legacy/template.html
srv/web/ipfire/html/redirect.cgi
srv/web/ipfire/html/themes
srv/web/ipfire/html/themes/ipfire
srv/web/ipfire/html/themes/ipfire/images/tux2.png
srv/web/ipfire/html/themes/ipfire/include
srv/web/ipfire/html/themes/ipfire/include/colors.txt
srv/web/ipfire/html/themes/ipfire/include/css

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

View File

@@ -121,7 +121,6 @@ iframe {
/* Header */
#header {
height: 70px;
margin: 0 auto;
}
@@ -133,11 +132,14 @@ iframe {
}
#logo h1 {
color: #fff;
font-size: 3.6em;
color: #ffffff;
font-size: 3.5em;
font-weight: bold;
padding-top: 0.2em;
padding-left: 1.7em;
}
#logo h1 a {
color: inherit;
text-decoration: none;
}
/* Main */

View File

@@ -140,17 +140,18 @@ print <<END
<body>
<div id="header" class="fixed">
<div id="logo">
<a href="https://www.ipfire.org" style="text-decoration: none;">
<img src="/themes/ipfire/images/tux2.png" style="float:left; margin-left: -3px; margin-top: -3px;"/>
<h1>
<a href="https://www.ipfire.org">
IPFire_
</a>
END
;
if ($settings{'WINDOWWITHHOSTNAME'} ne 'off') {
print "</a><h1>$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}</h1>";
} else {
print "<h1>IPFire</h1></a>";
print "&dash; $settings{'HOSTNAME'}.$settings{'DOMAINNAME'}";
}
print <<END
</h1>
</div>
</div>
END