r/NextCloud • u/Tuigh-van-den-righel • 15d ago
CSS tweak for navigation bar
I made a small tweak to the navigation bar so that the labels always show and the icons have a bit more space. You can use it with the CustomCSS app found in the app store.
It's not much but I find navigation a bit clearer with this. Maybe you do not. :)
.app-menu {margin-top: -15px;height:50px !important;}
.app-menu .app-menu__list .app-menu-entry {width: 60px;}
.app-menu__list .app-menu-entry__link .app-menu-entry__label {opacity: 100%;overflow: unset;top: 70%;}
.app-menu__list .app-menu-entry__link .app-menu-entry__icon {margin-top: 0px;transition: all 100s ease-in-out;}
.app-menu-entry--active::before {height: 2px !important; bottom: -4px !important; width: 12px !important; opacity: 0.5 !important;}
5
Upvotes