diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-11-23 12:44:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-23 12:44:49 +0100 |
| commit | 0e27578e3528f6dc95a0ae8801e1972b3fdc1766 (patch) | |
| tree | 619b1948e77b7dd7f16a73ce57f5c41070498d1a /searx/static/themes/simple/src/less/animations.less | |
| parent | a87f1eb9ec318e794c03a2bcb06b084cd69dc1d0 (diff) | |
| parent | 339838f9f53e62d23760596f65a9a05d2810472b (diff) | |
Merge pull request #527 from dalf/fix-simple-modal
[fix] simple theme: fix modal dialog
Diffstat (limited to 'searx/static/themes/simple/src/less/animations.less')
| -rw-r--r-- | searx/static/themes/simple/src/less/animations.less | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/searx/static/themes/simple/src/less/animations.less b/searx/static/themes/simple/src/less/animations.less new file mode 100644 index 000000000..750b7d255 --- /dev/null +++ b/searx/static/themes/simple/src/less/animations.less @@ -0,0 +1,15 @@ +.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); + } + } +} |