summaryrefslogtreecommitdiff
path: root/client/simple/src/less/animations.less
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-01-23 11:10:40 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-02-28 12:27:41 +0100
commita1132deaa4618f228e82252397247a150081a5f3 (patch)
tree0445fbe04c8932acdfbe5362db40ea1782f38539 /client/simple/src/less/animations.less
parentb6487b70aaa199aba6ae999a9c99b340b5e98884 (diff)
[web-client] simple theme: move sources to client/simple/src
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'client/simple/src/less/animations.less')
-rw-r--r--client/simple/src/less/animations.less19
1 files changed, 19 insertions, 0 deletions
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;
+}