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,19 @@
/*
Tables tweaks
WIP
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
:root {
--table-border-color: var(--text-faint);
}
/* Border color */
.cm-s-obsidian .cm-table-widget th,
.cm-s-obsidian .cm-table-widget td{
border-color: var(--table-border-color);
}
/* Bold header row */
.cm-s-obsidian .cm-table-widget th {
font-weight:bold;
}