From 6ae0df4f469b54f7de9f810865c92594d26f6b06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 10 Jul 2023 18:07:04 -0400 Subject: [PATCH 1/2] fix: #11787 --- public/scss/admin/modules/nprogress.scss | 51 +++++++++--------------- 1 file changed, 19 insertions(+), 32 deletions(-) diff --git a/public/scss/admin/modules/nprogress.scss b/public/scss/admin/modules/nprogress.scss index 4584a127d7..99807bf906 100644 --- a/public/scss/admin/modules/nprogress.scss +++ b/public/scss/admin/modules/nprogress.scss @@ -1,8 +1,8 @@ #nprogress { pointer-events: none; - } +} - #nprogress .bar { +#nprogress .bar { background: #29d; position: fixed; @@ -12,9 +12,9 @@ width: 100%; height: 2px; - } +} - #nprogress .peg { +#nprogress .peg { display: block; position: absolute; right: 0px; @@ -26,26 +26,13 @@ -webkit-transform: rotate(3deg) translate(0px, -4px); -ms-transform: rotate(3deg) translate(0px, -4px); transform: rotate(3deg) translate(0px, -4px); - } - - #nprogress .spinner { - display: block; - position: fixed; - z-index: 1031; - top: 165px; - right: 35px; - } - - @include media-breakpoint-down(sm) { - #nprogress .spinner { - bottom: 15px; - right: 15px; - top: initial; - } - } +} +#nprogress .spinner { + display: none; +} - #nprogress .spinner-icon { +#nprogress .spinner-icon { width: 18px; height: 18px; box-sizing: border-box; @@ -57,24 +44,24 @@ -webkit-animation: nprogress-spinner 400ms linear infinite; animation: nprogress-spinner 400ms linear infinite; - } +} - .nprogress-custom-parent { +.nprogress-custom-parent { overflow: hidden; position: relative; - } +} - .nprogress-custom-parent #nprogress .spinner, - .nprogress-custom-parent #nprogress .bar { +.nprogress-custom-parent #nprogress .spinner, +.nprogress-custom-parent #nprogress .bar { position: absolute; - } +} - @-webkit-keyframes nprogress-spinner { +@-webkit-keyframes nprogress-spinner { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } - } - @keyframes nprogress-spinner { +} +@keyframes nprogress-spinner { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } - } +} From 509faa5eccf2cbe33caded73a3892fc9aefc5c63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 11 Jul 2023 11:04:51 -0400 Subject: [PATCH 2/2] chore: remove log --- public/src/client/post-queue.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/src/client/post-queue.js b/public/src/client/post-queue.js index a4b357b1d2..d7cfb9f230 100644 --- a/public/src/client/post-queue.js +++ b/public/src/client/post-queue.js @@ -110,7 +110,6 @@ define('forum/post-queue', [ if (listEl) { listEl.addEventListener('click', (e) => { const subselector = e.target.closest('[data-action]'); - console.log(subselector); if (subselector) { const action = subselector.getAttribute('data-action'); const uid = subselector.closest('[data-uid]').getAttribute('data-uid');