forked from hinterdupfinger/obsidian-ollama
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
56 lines (42 loc) · 998 Bytes
/
styles.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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
/*
Collapsible section styles
*/
.command-collapsible {
position: relative;
border-top: 1px solid var(--background-modifier-border);
margin-bottom: var(--size-4-1);
}
.command-collapsible > .icon {
position: absolute;
width: var(--size-4-6);
height: var(--size-4-6);
top: var(--size-4-5);
right: 0;
}
.command-collapsible > .content {
display: none;
}
.command-collapsible.open > .content {
display: block;
}
/*
Better Text Area Setting Styles
*/
.setting-textarea {
padding: 0.75em 0;
border-top: 1px solid var(--background-modifier-border);
display: flex;
flex-direction: column;
height: fit-content;
}
.setting-textarea > .setting-item-control > textarea {
margin-top: var(--size-4-1);
width: 100%;
height: var(--size-4-12);
resize: vertical;
}