Hide/Move Search and Filter Items Icons

Hi,

I generally like to work on as clean and simple a space as possible. Wondering if an option could be made to hide the filter and search icons? Or maybe even have the ability to move them to the bar where the settings and announcements icons are located?

I also generally use keyboard shortcuts whenever possible, so having icons on the page itself isn’t preferred.

Thanks for considering my request!

This will get rid of all the icons. They’ll fade back into view if you find them with your mouse. You need a Pro account, paste it in the Custom CSS box.

.LeftPaneSlidebarContainer,
.LeftPaneSplitter,
.AppHeader,
.DocumentTools-icon
 {
    opacity: 0;
}
.LeftPaneSlidebarContainer:hover,
.LeftPaneSplitter:hover,
.AppHeader:hover,
.DocumentTools-icon:hover
{
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
3 Likes

Thanks! I do have a PRO account and just applied your CSS. It works great!

1 Like