This commit is contained in:
Oscar Plaisant
2024-12-25 22:30:24 +01:00
parent 4a9afe51fa
commit 602a41e7f8
2098 changed files with 11681 additions and 2271 deletions

View File

@@ -0,0 +1,32 @@
/*
Status bar
Improves visual prominence of status bar, I don't want to hover in order to see what's on the status bar
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
.status-bar {
/* More visibility on dark theme */
.theme-dark & {
color:var(--nav-item-color) !important;
}
/* Compact icons */
.clickable-icon {
padding-left:3px;
padding-right:3px;
}
}
@container style(--status-bar-position: fixed) {
/* transparent minimal status bar */
/* .status-bar{
background:transparent !important;
transition: .2s all ease-in;
&:hover {
background: var(--background-primary) !important;
box-shadow: 0 0 3px 3px rgba(0,0,0,.1);
}
} */
}