diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-25 14:24:24 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-25 14:24:24 +0200 |
commit | cbd9fb3c5ca6a8ea4b5c813e11f545dbf06855f9 (patch) | |
tree | 0fe365fe715e8af32248ee25b3d6c05a718afdc3 /apps/theming/lib | |
parent | 551cffd1b8d80163bd63d2ed195e45698678a868 (diff) | |
download | nextcloud-server-cbd9fb3c5ca6a8ea4b5c813e11f545dbf06855f9.tar.gz nextcloud-server-cbd9fb3c5ca6a8ea4b5c813e11f545dbf06855f9.zip |
also fix log in button confirm arrow when theming, fix #1615
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index 86aba3f62ce..09b4a14f2b0 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -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 { |