Installer: Move style of background image from HTML to CSS
authorFomafix <fomafix@googlemail.com>
Fri, 14 Jun 2019 08:46:40 +0000 (10:46 +0200)
committerFomafix <fomafix@googlemail.com>
Fri, 14 Jun 2019 08:46:40 +0000 (10:46 +0200)
Change-Id: I5fb8a9fc87290c407be123238397accbc5a886dc

includes/installer/WebInstallerOutput.php
mw-config/config.css

index b061d0d..45784e4 100644 (file)
@@ -304,9 +304,7 @@ class WebInstallerOutput {
 
 <div id="mw-panel">
        <div class="portal" id="p-logo">
-               <a style="background-image: url(images/installer-logo.png);"
-                       href="https://www.mediawiki.org/"
-                       title="Main Page"></a>
+               <a href="https://www.mediawiki.org/" title="Main Page"></a>
        </div>
 <?php
        $message = wfMessage( 'config-sidebar' )->plain();
index 8b3b39e..9647842 100644 (file)
        border: 1px solid #5dc9f4;
        margin-left: 20px;
 }
+
+#p-logo a {
+       background-image: url( images/installer-logo.png );
+}