-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathSmart2ndBrain.css
57 lines (47 loc) · 1.4 KB
/
Smart2ndBrain.css
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
Smart Second Brain
This plugin is early and there are no CSS classes really being used so this is extremely hacky, but improves the UX a bit.
The plugin isn't quite practical enough for me just yet, so I'll revisit this another time in the future.
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
.workspace-leaf {
[data-type=chat-view] .view-content:has(.chat-window) {
/* selectors aren't great in this plugin right now */
padding:0;
output {
font-size:13px;
}
[aria-label="Open quick settings"] {
transform:translate(0, 7px) !important;
opacity: 0.7;
}
textarea {
margin-left: 16px;
margin-right: 12px;
+ button {
padding-left:8px;
padding-right:8px;
margin-right:12px;
}
}
:is(.min-h-\[33\%\]) {
padding:10px;
min-height: 20% !important;
height:auto;
font-size:13px;
}
.chat-window {
border-radius:0;
border:0;
.group {
margin:4px;
margin-left:12px;
padding-left:12px;
font-size:13px;
}
}
> div:first-child {
padding-bottom:0 !important;
}
}
}