Skip to content

Commit

Permalink
webui: replace solid white background on login page with a gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergkemper committed Dec 16, 2021
1 parent a694347 commit c80c1cc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions webui/module/Application/view/layout/login.phtml.in
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,22 @@ echo $this->doctype();

<body>

<style>
.panel-default, .panel {
background-color: transparent;
border-width: 0px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
html {
min-height: 100%;
}
body {
background: linear-gradient(#ffffff, #0075be);
}
</style>

<?php
include 'version.php';
?>
Expand Down

0 comments on commit c80c1cc

Please sign in to comment.