generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (59 loc) · 1.46 KB
/
styles.css
File metadata and controls
74 lines (59 loc) · 1.46 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
.theme-dark img[alt*="supernote-invert-dark"] {
filter: invert(1);
}
.theme-light img[alt*="supernote-invert-light"] {
filter: invert(1);
}
.theme-dark img.supernote-invert-dark {
filter: invert(1);
}
.theme-light img.supernote-invert-light {
filter: invert(1);
}
button.mod-cta {
display: block;
}
.page-recognized-text {
user-select: text;
white-space: pre-line;
margin: 1.2em 0;
}
div.page-container {
display: inline-block;
vertical-align: top;
margin: 1.2em;
}
/* Custom dictionary settings styles */
.supernote-settings-custom-dictionary-subtitle {
padding: 0 0 0.75em;
}
.supernote-settings-custom-dictionary-entries {
display: block;
}
.supernote-settings-custom-dictionary-entries.disabled {
display: none;
}
.supernote-settings-custom-dictionary table {
margin-block-start: var(--size-4-2);
margin-block-end: var(--size-2-1);
font-size: smaller;
}
.supernote-settings-custom-dictionary table, .supernote-settings-custom-dictionary table input {
width: 100%;
}
.supernote-settings-custom-dictionary table th {
text-align: start;
}
.supernote-settings-custom-dictionary-entry-options {
display: grid;
grid-gap: var(--size-4-1);
grid-auto-flow: column;
}
.supernote-settings-custom-dictionary button {
cursor: pointer;
}
.supernote-settings-custom-dictionary-entry-options button.active {
color: var(--text-on-accent);
--icon-color: var(--text-on-accent);
background-color: var(--interactive-accent);
}