Skip to content

Instantly share code, notes, and snippets.

@nathonius
Created December 26, 2023 19:08
Show Gist options
  • Save nathonius/73467dcae3367d03b7f545665ff962cd to your computer and use it in GitHub Desktop.
Save nathonius/73467dcae3367d03b7f545665ff962cd to your computer and use it in GitHub Desktop.
Obsidian "new note" button snippet
.workspace-leaf-content[data-type="file-explorer"]
.nav-header
.nav-buttons-container
.clickable-icon.nav-action-button:first-of-type {
background-color: var(--interactive-accent);
color: var(--text-on-accent);
box-shadow: var(--input-shadow);
border-radius: var(--button-radius);
width: 100px;
padding: var(--size-2-3);
}
.workspace-leaf-content[data-type="file-explorer"]
.nav-header
.nav-buttons-container
.clickable-icon.nav-action-button:first-of-type:hover {
background-color: var(--interactive-accent-hover);
}
.workspace-leaf-content[data-type="file-explorer"]
.nav-header
.nav-buttons-container
.clickable-icon.nav-action-button:first-of-type::after {
content: "New Note";
font-size: var(--font-ui-small);
margin-left: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment