From a1132deaa4618f228e82252397247a150081a5f3 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Thu, 23 Jan 2025 11:10:40 +0100 Subject: [web-client] simple theme: move sources to client/simple/src Signed-off-by: Markus Heiser --- client/simple/src/less/animations.less | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 client/simple/src/less/animations.less (limited to 'client/simple/src/less/animations.less') diff --git a/client/simple/src/less/animations.less b/client/simple/src/less/animations.less new file mode 100644 index 000000000..75c98308f --- /dev/null +++ b/client/simple/src/less/animations.less @@ -0,0 +1,19 @@ +.dialog-modal { + animation-name: dialogmodal; + animation-duration: 0.13s; + + @keyframes dialogmodal { + 0% { + opacity: 0; + } + + 50% { + opacity: 0.5; + transform: translate(-50%, -50%) scale(1.05); + } + } +} + +input.checkbox-onoff[type="checkbox"]::before { + transition: left 0.25s; +} -- cgit v1.2.3