generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (67 loc) · 1.29 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
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.
*/
.api-key-setting .setting-item-control {
flex-wrap: wrap;
}
.api-test-success {
color: var(--text-success);
}
.api-test-error {
color: var(--text-error);
}
.frontmatter-options-textarea {
width: 100%;
height: 150px;
}
/* Custom Format Modal Styles */
.custom-format-modal {
width: 1200px;
max-width: 1200px;
}
.custom-format-title {
text-align: center;
margin-bottom: 20px;
}
.custom-format-container {
display: flex;
gap: 20px;
height: 600px;
margin: 0 0 20px 0;
}
.custom-format-panel {
flex: 1;
display: flex;
flex-direction: column;
}
.custom-format-panel-title {
margin: 0 0 10px 0;
}
.custom-format-textarea {
width: 100%;
height: 100%;
font-family: monospace;
resize: none;
padding: 10px;
border-radius: 5px;
background-color: var(--background-primary);
}
.custom-format-preview {
margin: 0;
height: 100%;
padding: 10px;
border-radius: 5px;
overflow: auto;
background-color: var(--background-secondary);
font-family: monospace;
}
.custom-format-bottom {
border-top: 1px solid var(--background-modifier-border);
padding-top: 20px;
}
.custom-format-info {
text-align: center;
color: var(--text-muted);
}