From 7c8a901b841878c7d63940baa551f5982958874e Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Thu, 10 Feb 2022 23:56:05 +0100 Subject: Cleanup admin settings js files * Move admin.js to webpack, so that this use the bundled jquery files instead of the deprecated window.$ Also fixing formatting * Remove log.js that seems to be from a time where logreader was bundled with server and I couldn't find an usage of it anymore * Fix recent regression in rebuild navigation function (now not depending on jquery anymore and bundled by webpack). Signed-off-by: Carl Schwan --- apps/settings/css/settings.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'apps/settings/css') diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index 7b261d67181..d9073b9a138 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -1755,3 +1755,18 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { } } } + +.animated { + animation: blink-animation 1s steps(5, start) 4; +} + +@keyframes blink-animation { + to { + opacity: 0.6; + } +} +@-webkit-keyframes blink-animation { + to { + opacity: 1; + } +} -- cgit v1.2.3