From f16b1230e61355b6edb2b4fab647965521138323 Mon Sep 17 00:00:00 2001 From: Elblinator <69210919+Elblinator@users.noreply.github.com> Date: Fri, 24 Nov 2023 09:27:53 +0100 Subject: [PATCH] Remove unused css classes (#3043) --- .../styles/global-components-style.scss | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/client/src/assets/styles/global-components-style.scss b/client/src/assets/styles/global-components-style.scss index 21ed09266a..7d5e7ce962 100644 --- a/client/src/assets/styles/global-components-style.scss +++ b/client/src/assets/styles/global-components-style.scss @@ -316,26 +316,4 @@ .sidenav-background { background: if($is-dark-theme, darken(mat.get-color-from-palette($background, background), 0.5%), white); } - - .alternating-list { - > * { - @if $is-dark-theme { - @extend .background-dark-brighter; - } - &:hover { - background: rgba(0, 0, 0, 0.04); - } - } - - > *:nth-of-type(2n + 1) { - @if $is-dark-theme { - @extend .background-dark; - } @else { - background: rgba(0, 0, 0, 0.02); - &:hover { - background: rgba(0, 0, 0, 0.06); - } - } - } - } }