diff --git a/public/css/app.css b/public/css/app.css index 0f477b5a2..7b28a4938 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -57297,10 +57297,6 @@ body{ margin-top: 0px; } - .lg\:-mt-16{ - margin-top: -4rem; - } - .lg\:mb-0{ margin-bottom: 0px; } @@ -57417,10 +57413,6 @@ body{ width: 46.875rem; } - .lg\:w-4\/5{ - width: 80%; - } - .lg\:w-3\/5{ width: 60%; } diff --git a/public/css/custom_loading.css b/public/css/custom_loading.css new file mode 100644 index 000000000..94d4859c0 --- /dev/null +++ b/public/css/custom_loading.css @@ -0,0 +1,82 @@ +/* content */ +@media (min-width: 1024px) { + .content-modal { + width: 100%; + } +} +.content-modal { + position: fixed; + width: 80%; + height: 100vh; + display: flex; + align-items: center; + justify-content: center; + margin-left: -0.25rem; + margin-right: -0.25rem; + z-index: 60; + top: 0px; + bottom: 0px; + background-color: rgb(252, 252, 252); + z-index: 60; +} + +[dir="ltr"] .content-modal { + right: 0px; +} + +[dir="rtl"] .content-modal { + left: 0px; +} + +@media (min-width: 1024px) { + .content-modal img { + margin-top: -4rem; + } +} +.content-modal img { + width: 7rem; + height: 7rem; +} +/* content */ + +/* absolute */ +@media (min-width: 1024px) { + .absolute-modal { + display: block; + } + } + .absolute-modal { + position: absolute; + width: 100%; + display: flex; + align-items: start; + justify-content: center; + top: 0px; + bottom: 0px; + left: 0px; + right: 0px; + background-color: rgb(252, 252, 252); + z-index: 60; + } + + .absolute-modal img { + width: 7rem; + height: 7rem; + } +/* absolute */ + +.material-icons-outlined { +font-family: 'Material Icons Outlined'; +font-weight: normal; +font-style: normal; +font-size: 24px; +line-height: 1; +letter-spacing: normal; +text-transform: none; +display: inline-block; +white-space: nowrap; +word-wrap: normal; +direction: ltr; +-webkit-font-feature-settings: 'liga'; +-webkit-font-smoothing: antialiased; +} diff --git a/resources/views/components/layouts/admin/head.blade.php b/resources/views/components/layouts/admin/head.blade.php index 79a7f3831..a40e57b68 100644 --- a/resources/views/components/layouts/admin/head.blade.php +++ b/resources/views/components/layouts/admin/head.blade.php @@ -5,6 +5,8 @@
@stack('head_start') + + diff --git a/resources/views/components/layouts/auth/head.blade.php b/resources/views/components/layouts/auth/head.blade.php index 8701d674e..5251e5505 100644 --- a/resources/views/components/layouts/auth/head.blade.php +++ b/resources/views/components/layouts/auth/head.blade.php @@ -5,6 +5,8 @@ @stack('head_start') + + diff --git a/resources/views/components/layouts/modules/head.blade.php b/resources/views/components/layouts/modules/head.blade.php index 84b19c930..706aaccf7 100644 --- a/resources/views/components/layouts/modules/head.blade.php +++ b/resources/views/components/layouts/modules/head.blade.php @@ -5,6 +5,8 @@ @stack('head_start') + + diff --git a/resources/views/components/layouts/portal/head.blade.php b/resources/views/components/layouts/portal/head.blade.php index bcc534c92..c98fdccd5 100644 --- a/resources/views/components/layouts/portal/head.blade.php +++ b/resources/views/components/layouts/portal/head.blade.php @@ -5,6 +5,8 @@ @stack('head_start') + + diff --git a/resources/views/components/layouts/preview/head.blade.php b/resources/views/components/layouts/preview/head.blade.php index bcc534c92..c98fdccd5 100644 --- a/resources/views/components/layouts/preview/head.blade.php +++ b/resources/views/components/layouts/preview/head.blade.php @@ -5,6 +5,8 @@ @stack('head_start') + + diff --git a/resources/views/components/layouts/signed/head.blade.php b/resources/views/components/layouts/signed/head.blade.php index bcc534c92..c98fdccd5 100644 --- a/resources/views/components/layouts/signed/head.blade.php +++ b/resources/views/components/layouts/signed/head.blade.php @@ -5,6 +5,8 @@ @stack('head_start') + + diff --git a/resources/views/components/loading/absolute.blade.php b/resources/views/components/loading/absolute.blade.php index 45715f726..afab19b38 100644 --- a/resources/views/components/loading/absolute.blade.php +++ b/resources/views/components/loading/absolute.blade.php @@ -2,9 +2,8 @@ x-data="{ }" x-init="document.querySelector('[data-modal-handle]') ? document.querySelectorAll('[data-modal-handle]').forEach((item) => { item.classList.add('invisible') }) : null, setTimeout(() => $refs.loadingAbsoluteContent.remove(), 1000), setTimeout(() => document.querySelector('[data-modal-handle]') ? document.querySelectorAll('[data-modal-handle]').forEach((item) => { item.classList.remove('invisible') }) : null , 1010)" x-ref="loadingAbsoluteContent" - class="absolute w-full lg:flex items-start justify-center bg-body top-0 bottom-0 left-0 right-0" - style="z-index: 60;" + class="absolute-modal" > -