From 3c840831f0f5a625e6c5d5b9948cf173fd347e01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Gro=C3=9Fe?= Date: Sat, 12 May 2018 20:39:20 +0200 Subject: [PATCH] fix(sidebar): let nested list items in the sidebar have indentation again Some overzealous aligning removed all indentation from lists in the sidebar. Removing just the left-padding from the top-level ul is enough. Nested ul don't have padding anyway. --- css/area_main-sidebar-nav.less | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/css/area_main-sidebar-nav.less b/css/area_main-sidebar-nav.less index f894e59..d25b720 100755 --- a/css/area_main-sidebar-nav.less +++ b/css/area_main-sidebar-nav.less @@ -18,19 +18,8 @@ display: none; } - > ul, - > ol, - > nav { + ul { padding-left: 0; - - ul, - ol { - padding-left: 0; - - li { - margin-left: 0; - } - } } nav {