From 00f762116ad51ac4202d38469400601828c9ff66 Mon Sep 17 00:00:00 2001 From: Tara Rostami <132676256+TaraRostami@users.noreply.github.com> Date: Fri, 15 Mar 2024 18:06:50 +0330 Subject: [PATCH] Update custom.css --- web/assets/css/custom.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/web/assets/css/custom.css b/web/assets/css/custom.css index 2745d180..f40e68e3 100644 --- a/web/assets/css/custom.css +++ b/web/assets/css/custom.css @@ -1297,3 +1297,37 @@ b, strong { .ant-select-sm .ant-select-selection__rendered { margin-left: 10px; } + +.ant-collapse { + -moz-animation: collfade 0.3s ease; + -webkit-animation: 0.3s collfade 0.3s ease; + animation: collfade 0.3s ease; +} + +@-webkit-keyframes collfade { + 0% { + transform: scaleY(.8); + transform-origin: 0% 0%; + opacity: 0; + } + + 100% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } +} + +@keyframes collfade { + 0% { + transform: scaleY(.8); + transform-origin: 0% 0%; + opacity: 0; + } + + 100% { + transform: scaleY(1); + transform-origin: 0% 0%; + opacity: 1; + } +}