This repository was archived by the owner on May 29, 2025. It is now read-only.
generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
96 lines (82 loc) · 2.02 KB
/
styles.css
File metadata and controls
96 lines (82 loc) · 2.02 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* .cm-tooltip { */
/* background-color: var(--background-primary) !important; */
/* } */
/**/
/* .cm-lintRange { */
/* padding-bottom: 0; */
/* } */
/**/
/* .cm-lintRange-error { */
/* background-image: none; */
/* border-bottom: 1px solid #d11; */
/* } */
/**/
/* .cm-lintrange-warning { */
/* background-image: none; */
/* border-bottom: 1px solid orange; */
/* } */
/**/
/* .cm-lintrange-info { */
/* background-image: none; */
/* border-bottom: 1px solid #999; */
/* } */
/* base */
.textlint-plugin-severity-info {
color: var(--color-cyan);
}
.textlint-plugin-severity-warning {
color: var(--color-orange);
}
.textlint-plugin-severity-error {
color: var(--color-red);
}
/* diagnostics view */
#textlint-plugin-diagnostics-view-content {
display: flex;
flex-direction: column;
overflow: unset;
width: 100%;
margin: 0;
padding: 0;
}
#textlint-plugin-diagnostics-view-content-header {
border-bottom: 2px solid var(--background-modifier-border);
padding: 1em;
}
.textlint-plugin-diagnostics-view-content-header-metadata-container {
color: var(--text-faint);
display: flex;
flex-direction: row;
justify-content: space-between;
}
.textlint-plugin-diagnostics-view-content-header-metadata-severity-item {
margin-left: 0.25em;
}
#textlint-plugin-diagnostics-view-content-message-container {
width: 100%;
height: 100%;
overflow: scroll;
padding: 1em;
}
.textlint-plugin-diagnostics-view-content-message-item-container {
display: flex;
flex-direction: column;
border-bottom: 2px solid var(--background-modifier-border);
margin-bottom: 0.5em;
padding-bottom: 0.5em;
cursor: pointer;
}
.textlint-plugin-diagnostics-view-content-message-item-footer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.textlint-plugin-diagnostics-view-content-message-item-loc {
color: var(--text-faint);
}
.textlint-plugin-diagnostics-view-content-message-item-rule {
color: var(--text-faint);
}
.textlint-plugin-diagnostics-view-content-message-item-hr {
margin: 0.5em 0;
}