From 573a7162d2c9cc5ac2381cb35229dac1df890d47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s?= Date: Thu, 5 Oct 2023 11:24:57 -0400 Subject: [PATCH] Add box style --- modules/backup_restore/themes/default/css/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/backup_restore/themes/default/css/style.css b/modules/backup_restore/themes/default/css/style.css index 590c327..d490ce3 100644 --- a/modules/backup_restore/themes/default/css/style.css +++ b/modules/backup_restore/themes/default/css/style.css @@ -112,3 +112,14 @@ altura 0 (Elastix bug #1526) */ } *{padding:0;margin:0}.checkwrapper{display:flex;justify-content:center;align-items:center;background-color:#fff;zoom:.6;display:none;}.checkmark__circle{stroke-dasharray: 166;stroke-dashoffset: 166;stroke-width: 2;stroke-miterlimit: 10;stroke: #7ac142;fill: none;animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.checkmark{width: 56px;height: 56px;border-radius: 50%;display: block;stroke-width: 2;stroke: #fff;stroke-miterlimit: 10;margin: 10% auto;box-shadow: inset 0px 0px 0px #7ac142;animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both}.checkmark__check{transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}@keyframes stroke{100%{stroke-dashoffset: 0}}@keyframes scale{0%, 100%{transform: none}50%{transform: scale3d(1.1, 1.1, 1)}}@keyframes fill{100%{box-shadow: inset 0px 0px 0px 30px #7ac142}} + +.box { + position: relative; + margin: 10px; + padding: 10px; + font-size: .8em; + background-color:#fff; + box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,.03), 0 0.9375rem 1.40625rem rgba(4,9,20,.03), 0 0.25rem 0.53125rem rgba(4,9,20,.05), 0 0.125rem 0.1875rem rgba(4,9,20,.03); + border-width: 0; + transition: all .2s; +}