diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-06-14 15:55:07 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-06-20 19:20:51 +0200 |
commit | 80efb51a1a7a0e00fc26302388d7b95b28c60208 (patch) | |
tree | c1d7d47c703ab3518f8cc10a4af4781516c16172 /apps/theming/css | |
parent | b69d345677c97dbdbb45273aa89d7efcfac81c31 (diff) | |
download | nextcloud-server-80efb51a1a7a0e00fc26302388d7b95b28c60208.tar.gz nextcloud-server-80efb51a1a7a0e00fc26302388d7b95b28c60208.zip |
[theming] reload css variables instead of the whole server css
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/settings-admin.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/theming/css/settings-admin.scss b/apps/theming/css/settings-admin.scss index 7753540ccd2..c67d48d46fe 100644 --- a/apps/theming/css/settings-admin.scss +++ b/apps/theming/css/settings-admin.scss @@ -122,3 +122,11 @@ background-size: contain; } } + +/* transition effects for theming value changes */ +#header { + transition: background-color 500ms linear; + svg, img { + transition: 500ms filter linear; + } +}
\ No newline at end of file |