Make sure theming logo css only applies when a logo is set
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
9c9c438c8b
commit
e3fb91756a
|
@ -91,14 +91,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
/* override styles for login screen in guest.css */
|
/* override styles for login screen in guest.css */
|
||||||
@if variable_exists('theming-logo-mime') {
|
@if variable_exists('theming-logo-mime') and $theming-logo-mime != '' {
|
||||||
#header .logo {
|
#header .logo {
|
||||||
background-image: url(#{$image-logo});
|
background-image: url(#{$image-logo});
|
||||||
background-size: contain;
|
background-size: contain;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@if variable_exists('theming-background-mime') {
|
@if variable_exists('theming-background-mime') and $theming-background-mime != '' {
|
||||||
#body-login,
|
#body-login,
|
||||||
#firstrunwizard .firstrunwizard-header,
|
#firstrunwizard .firstrunwizard-header,
|
||||||
#theming-preview {
|
#theming-preview {
|
||||||
|
|
Loading…
Reference in New Issue