Skip to content

Instantly share code, notes, and snippets.

@jplattel
Created September 27, 2021 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jplattel/42b57ff52c867e7104bf34f4e925bb94 to your computer and use it in GitHub Desktop.
Save jplattel/42b57ff52c867e7104bf34f4e925bb94 to your computer and use it in GitHub Desktop.
Obsidian Workspaces status-bar styling
/* Style the workspace picker item */
div.workspace-item[data-workspace-name="your-workspace-name"] {
border: 1px solid red;
}
/* Style the status bar */
body[data-workspace-name="your-workspace-name"] .status-bar {
background-color: red;
color: #111
}
/* Style the links in the statusbar */
body[data-workspace-name="your-workspace-name"] .status-bar-item:hover{
color: #333;
text-decoration: underline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment