forked from nothingislost/obsidian-query-control
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
68 lines (55 loc) · 1.52 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
.workspace-leaf-content[data-type="markdown"] .internal-query .nav-header {
margin-top: 0; /* works around issues with minimal theme */
}
.workspace-leaf-content[data-type="markdown"] .internal-query .nav-header .nav-buttons-container {
position: unset; /* works around issues with minimal theme */
justify-content: center; /* works around issues with minimal theme */
}
.workspace-leaf-content[data-type="markdown"] .internal-query .is-hidden {
display: none;
}
.search-results-children.is-rendered .search-result-file-match {
white-space: normal;
}
.search-results-children.is-rendered {
padding: 0;
}
.search-results-children.is-rendered .search-result-file-matches .markdown-preview-view {
padding: 0;
}
.search-results-children.is-rendered .search-result-file-matches .markdown-preview-section {
max-width: 100%;
}
.search-results-children.is-rendered .task-list-item-checkbox {
vertical-align: unset;
}
.search-results-children.is-rendered ul {
padding-inline-start: 40px;
margin-block-end: 0;
margin-block-start: 0;
}
.cm-preview-code-block.is-rendered .markdown-preview-view {
height: inherit;
}
.query-control-sort-tooltip {
position: absolute;
top: var(--tooltip-top);
left: var(--tooltip-left);
background: #333;
color: #fff;
border-radius: 4px;
padding: 5px;
z-index: 1000;
}
.query-control-sort-option {
padding: 5px;
cursor: pointer;
}
.query-control-sort-option:hover {
background: #555;
}
.query-control-sort-option-checkmark {
color: #fff;
margin-left: 10px;
font-size: 1em;
}