mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
also fix log in button confirm arrow when theming, fix #1615
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
551cffd1b8
commit
cbd9fb3c5c
2 changed files with 3 additions and 0 deletions
|
|
@ -396,6 +396,7 @@ class ThemingController extends Controller {
|
|||
$responseCss .= '#header .icon-caret { background-image: url(\'' . \OC::$WEBROOT . '/core/img/actions/caret-dark.svg\'); }' . "\n";
|
||||
$responseCss .= '.searchbox input[type="search"] { background: transparent url(\'' . \OC::$WEBROOT . '/core/img/actions/search.svg\') no-repeat 6px center; color: #000; }' . "\n";
|
||||
$responseCss .= '.searchbox input[type="search"]:focus,.searchbox input[type="search"]:active,.searchbox input[type="search"]:valid { color: #000; border: 1px solid rgba(0, 0, 0, .5); }' . "\n";
|
||||
$responseCss .= '#body-login input.login { background-image: url(\'' . \OC::$WEBROOT . '/core/img/actions/confirm.svg?v=2\'); }' . "\n";
|
||||
$responseCss .= '.nc-theming-contrast {color: #000000}' . "\n";
|
||||
$responseCss .= '.ui-widget-header { color: #000000; }' . "\n";
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -566,6 +566,7 @@ class ThemingControllerTest extends TestCase {
|
|||
$expectedData .= '#header .icon-caret { background-image: url(\'' . \OC::$WEBROOT . '/core/img/actions/caret-dark.svg\'); }' . "\n";
|
||||
$expectedData .= '.searchbox input[type="search"] { background: transparent url(\'' . \OC::$WEBROOT . '/core/img/actions/search.svg\') no-repeat 6px center; color: #000; }' . "\n";
|
||||
$expectedData .= '.searchbox input[type="search"]:focus,.searchbox input[type="search"]:active,.searchbox input[type="search"]:valid { color: #000; border: 1px solid rgba(0, 0, 0, .5); }' . "\n";
|
||||
$expectedData .= '#body-login input.login { background-image: url(\'' . \OC::$WEBROOT . '/core/img/actions/confirm.svg?v=2\'); }' . "\n";
|
||||
$expectedData .= '.nc-theming-contrast {color: #000000}' . "\n";
|
||||
$expectedData .= '.ui-widget-header { color: #000000; }' . "\n";
|
||||
|
||||
|
|
@ -863,6 +864,7 @@ class ThemingControllerTest extends TestCase {
|
|||
$expectedData .= '#header .icon-caret { background-image: url(\'' . \OC::$WEBROOT . '/core/img/actions/caret-dark.svg\'); }' . "\n";
|
||||
$expectedData .= '.searchbox input[type="search"] { background: transparent url(\'' . \OC::$WEBROOT . '/core/img/actions/search.svg\') no-repeat 6px center; color: #000; }' . "\n";
|
||||
$expectedData .= '.searchbox input[type="search"]:focus,.searchbox input[type="search"]:active,.searchbox input[type="search"]:valid { color: #000; border: 1px solid rgba(0, 0, 0, .5); }' . "\n";
|
||||
$expectedData .= '#body-login input.login { background-image: url(\'' . \OC::$WEBROOT . '/core/img/actions/confirm.svg?v=2\'); }' . "\n";
|
||||
$expectedData .= '.nc-theming-contrast {color: #000000}' . "\n";
|
||||
$expectedData .= '.ui-widget-header { color: #000000; }' . "\n";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue