generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
69 lines (55 loc) · 1.23 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
/*
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.
*/
.js-func-container {
margin-top: 10px; /* Add some spacing if needed */
height: auto; /* Adjust height */
}
.CodeMirror {
border: 1px solid var(--text-muted) !important;
}
.value-preview {
margin: 10px 0;
}
.query-modal-setting {
border: none;
}
.query-modal-setting-container {
border-bottom: solid;
}
.ant-dropdown-menu-item-selected .ant-dropdown-menu-title-content {
color: var(--color-purple);
font-weight: normal;
display: block;
min-height: 1.2em;
padding: 0px 2px 1px;
white-space: nowrap;
}
.ant-dropdown-menu-title-content:not(
.ant-dropdown-menu-item-selected .ant-dropdown-menu-title-content
) {
color: var(--text-normal);
font-weight: normal;
display: block;
min-height: 1.2em;
padding: 0px 2px 1px;
white-space: nowrap;
}
.query-modal-sub-setting-item-name {
font-size: var(--font-ui-small);
}
.query-modal-sub-setting-item .setting-item-name{
font-size: var(--font-ui-small);
}
.query-modal-sub-setting-item {
padding-left: 5px;
border-top: none;
}
.code-editor-container{
margin-top: 5px;
}
.query-modal-error{
color: var(--text-error);
}