From 9a900c62f50772add000e0b0f3f9e952af113d76 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 3 Mar 2020 14:27:36 +0100 Subject: [PATCH] css: Add pulse animation --- public/css/icinga/animation.less | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/public/css/icinga/animation.less b/public/css/icinga/animation.less index c4a9cfafd..aad3ffb7e 100644 --- a/public/css/icinga/animation.less +++ b/public/css/icinga/animation.less @@ -346,4 +346,21 @@ 100% { opacity: 0.2; } -} \ No newline at end of file +} + +@keyframes pulse { + 0% { + opacity: .5; + transform: scale(1); + } + + 50% { + opacity: 1; + transform: scale(1.2); + } + + 100% { + opacity: .5; + transform: scale(1); + } +}