gristlabs / mkdocs-windmill

Outstanding mkdocs theme with a focus on navigation and usability
Other
106 stars 62 forks source link

Lvl4 on left menu not handled #19

Open oxedions opened 6 years ago

oxedions commented 6 years ago

Hello,

I know not everyone will need this, but it would be nice to go to lvl4 on left menu. You just need to add it in base.css:

.wm-toc-lev1 > .wm-toc-text { padding-left: 14px; } .wm-toc-lev2 > .wm-toc-text { padding-left: 28px; } .wm-toc-lev3 > .wm-toc-text { padding-left: 42px; } .wm-toc-lev4 > .wm-toc-text { padding-left: 56px; }

.wm-toc-lev1 + .wm-page-toc { margin-left: 14px; } .wm-toc-lev2 + .wm-page-toc { margin-left: 28px; } .wm-toc-lev3 + .wm-page-toc { margin-left: 42px; } .wm-toc-lev4 + .wm-page-toc { margin-left: 56px; }

And it works like a charm :-)

And by the way, many thanks for this Theme, it's perfect !

Ox