Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save NotFluffy/76d775d8c66b124a2e0fbe3a257026e0 to your computer and use it in GitHub Desktop.
Save NotFluffy/76d775d8c66b124a2e0fbe3a257026e0 to your computer and use it in GitHub Desktop.
Keeps the sidebar ribbon out of sight and only shows it upon hover. [Tested Obsidian 1.6.7 on Windows11]
/* NO HOVER : NO RIBBON */
.side-dock-ribbon.mod-left:not(:hover){
width: 0px !important;
opacity: 0
}
.side-dock-ribbon.mod-left {
flex: 0 0 5px;
transition: flex .2s;
}
/* ON HOVER : SHOW RIBBON */
.side-dock-ribbon.mod-left:hover {
flex: 0 0 40px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment