fix missing semicolon to fix themed logo on log in page
This commit is contained in:
parent
3b386af295
commit
ad5e98c81a
|
@ -244,10 +244,10 @@ class ThemingController extends Controller {
|
|||
"}\n";
|
||||
$responseCss .= '
|
||||
#firstrunwizard .firstrunwizard-header {
|
||||
background-color: ' . $color . ';
|
||||
background-color: ' . $color . ';
|
||||
}
|
||||
#firstrunwizard p a {
|
||||
color: ' . $color . ';
|
||||
color: ' . $color . ';
|
||||
}
|
||||
';
|
||||
|
||||
|
@ -256,7 +256,7 @@ class ThemingController extends Controller {
|
|||
if($logo !== '') {
|
||||
$responseCss .= sprintf(
|
||||
'#header .logo {' .
|
||||
'background-image: url(\'./logo?v='.$cacheBusterValue.'\')' .
|
||||
'background-image: url(\'./logo?v='.$cacheBusterValue.'\');' .
|
||||
'background-size: contain;' .
|
||||
'}' . "\n" .
|
||||
'#header .logo-icon {' .
|
||||
|
|
|
@ -365,10 +365,10 @@ class ThemingControllerTest extends TestCase {
|
|||
|
||||
$expectedData .= '
|
||||
#firstrunwizard .firstrunwizard-header {
|
||||
background-color: ' . $color . ';
|
||||
background-color: ' . $color . ';
|
||||
}
|
||||
#firstrunwizard p a {
|
||||
color: ' . $color . ';
|
||||
color: ' . $color . ';
|
||||
}
|
||||
';
|
||||
|
||||
|
@ -421,10 +421,10 @@ class ThemingControllerTest extends TestCase {
|
|||
|
||||
$expectedData .= '
|
||||
#firstrunwizard .firstrunwizard-header {
|
||||
background-color: ' . $color . ';
|
||||
background-color: ' . $color . ';
|
||||
}
|
||||
#firstrunwizard p a {
|
||||
color: ' . $color . ';
|
||||
color: ' . $color . ';
|
||||
}
|
||||
';
|
||||
$expectedData .= '#header .header-appname, #expandDisplayName { color: #000000; }' . "\n";
|
||||
|
@ -463,7 +463,7 @@ class ThemingControllerTest extends TestCase {
|
|||
->willReturn('');
|
||||
|
||||
$expectedData = '#header .logo {' .
|
||||
'background-image: url(\'./logo?v=0\')' .
|
||||
'background-image: url(\'./logo?v=0\');' .
|
||||
'background-size: contain;' .
|
||||
'}' . "\n" .
|
||||
'#header .logo-icon {' .
|
||||
|
@ -558,15 +558,15 @@ class ThemingControllerTest extends TestCase {
|
|||
"}\n";
|
||||
$expectedData .= '
|
||||
#firstrunwizard .firstrunwizard-header {
|
||||
background-color: ' . $color . ';
|
||||
background-color: ' . $color . ';
|
||||
}
|
||||
#firstrunwizard p a {
|
||||
color: ' . $color . ';
|
||||
color: ' . $color . ';
|
||||
}
|
||||
';
|
||||
$expectedData .= sprintf(
|
||||
'#header .logo {' .
|
||||
'background-image: url(\'./logo?v=0\')' .
|
||||
'background-image: url(\'./logo?v=0\');' .
|
||||
'background-size: contain;' .
|
||||
'}' . "\n" .
|
||||
'#header .logo-icon {' .
|
||||
|
@ -631,15 +631,15 @@ class ThemingControllerTest extends TestCase {
|
|||
"}\n";
|
||||
$expectedData .= '
|
||||
#firstrunwizard .firstrunwizard-header {
|
||||
background-color: ' . $color . ';
|
||||
background-color: ' . $color . ';
|
||||
}
|
||||
#firstrunwizard p a {
|
||||
color: ' . $color . ';
|
||||
color: ' . $color . ';
|
||||
}
|
||||
';
|
||||
$expectedData .= sprintf(
|
||||
'#header .logo {' .
|
||||
'background-image: url(\'./logo?v=0\')' .
|
||||
'background-image: url(\'./logo?v=0\');' .
|
||||
'background-size: contain;' .
|
||||
'}' . "\n" .
|
||||
'#header .logo-icon {' .
|
||||
|
|
Loading…
Reference in New Issue