diff --git a/slt/css/components/_current-page-manu.scss b/slt/css/components/_current-page-manu.scss new file mode 100644 index 0000000..14b109a --- /dev/null +++ b/slt/css/components/_current-page-manu.scss @@ -0,0 +1,35 @@ +#current_page_menu.menu +{ + background-color: transparent; + padding-top: 0px; + padding-bottom: 0px; + margin-bottom: 0px; + + &:hover + { + box-shadow: unset; + } + + > li + { + border-style: none; + display: none; + + &.active + { + display: block; + border-style: none; + + > a + { + background-color: transparent; + font-weight: bold; + } + } + } + + + +} + + diff --git a/slt/css/components/_index.scss b/slt/css/components/_index.scss index 31a6106..8ceeccf 100644 --- a/slt/css/components/_index.scss +++ b/slt/css/components/_index.scss @@ -1,2 +1,3 @@ @use "slideshow"; @use "article"; +@use "current-page-manu"; diff --git a/slt/css/layout/_leftmenu.scss b/slt/css/layout/_leftmenu.scss index 7c3bc97..0a609fa 100644 --- a/slt/css/layout/_leftmenu.scss +++ b/slt/css/layout/_leftmenu.scss @@ -21,31 +21,6 @@ } } - .nav { - background-color: transparent; - padding-top: 0; - padding-bottom: 0; - - &:hover { - box-shadow: unset; - } - - > li { - border-style: none; - display: none; - - &.active { - display: block; - border-style: none; - - > a { - background-color: transparent; - font-weight: bold; - } - } - } - } - .nav > li, .nav-child > li { padding: 5px 0;