From 0ce8229d2be170cc141d653381fe1be8c0dc57df Mon Sep 17 00:00:00 2001 From: Rebeka Dekany <50901361+rebekadekany@users.noreply.github.com> Date: Mon, 7 Jul 2025 18:12:57 +0200 Subject: [PATCH] Remove admin-panel LESS stylesheet (#26797) GitOrigin-RevId: e289ed2c82623034785d08564e01340828f7b91c --- .../web/frontend/stylesheets/main-style.less | 1 - .../stylesheets/modules/admin-panel.less | 37 ------------------- 2 files changed, 38 deletions(-) delete mode 100644 services/web/frontend/stylesheets/modules/admin-panel.less diff --git a/services/web/frontend/stylesheets/main-style.less b/services/web/frontend/stylesheets/main-style.less index 85368ea36e..9911686ad5 100644 --- a/services/web/frontend/stylesheets/main-style.less +++ b/services/web/frontend/stylesheets/main-style.less @@ -138,7 +138,6 @@ // module styles // TODO: find a way for modules to add styles dynamically @import 'modules/symbol-palette.less'; -@import 'modules/admin-panel.less'; @import 'modules/git-bridge-modal.less'; @import 'modules/group-settings.less'; @import 'modules/onboarding.less'; diff --git a/services/web/frontend/stylesheets/modules/admin-panel.less b/services/web/frontend/stylesheets/modules/admin-panel.less deleted file mode 100644 index e1f57a4738..0000000000 --- a/services/web/frontend/stylesheets/modules/admin-panel.less +++ /dev/null @@ -1,37 +0,0 @@ -.admin-panel-pagination { - display: flex; - justify-content: center; -} - -.phase-badge { - display: inline-block; - font-size: @font-size-small; - white-space: nowrap; - text-align: center; - padding: 3px 7px; - &:extend(.label); - &:extend(.label-info); -} - -.scrollable { - max-height: calc(100vh - 40vh); - overflow-y: auto; -} - -.hr-sect { - display: flex; - flex-basis: 100%; - align-items: center; - color: rgba(0, 0, 0, 0.35); - margin: 8px 0; -} -.hr-sect:before, -.hr-sect:after { - content: ''; - flex-grow: 1; - background: rgba(0, 0, 0, 0.35); - height: 1px; - font-size: 0; - line-height: 0; - margin: 0 8px; -}