-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathMySnippets.css
More file actions
28 lines (24 loc) · 660 Bytes
/
Copy pathMySnippets.css
File metadata and controls
28 lines (24 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
MySnippets plugin tweaks
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
/* Embiggen menu width for longer filenames */
.MySnippets-statusbar-menu {
width:420px;
}
/* Re-order menu item */
.MySnippets-statusbar-menu .menu-item .checkbox-container {
order:1
}
/* Make code button less prominent */
.MySnippets-statusbar-menu .MS-OpenSnippet {
box-shadow:none;
background:transparent;
}
.MySnippets-statusbar-menu .MS-OpenSnippet:hover svg path{
fill:var(--interactive-accent) !important;
}
/* Fix open snippet button on light themes */
.theme-light .MS-OpenSnippet svg path{
fill:var(--tx3) !important;
}