-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (56 loc) · 1.34 KB
/
styles.css
File metadata and controls
66 lines (56 loc) · 1.34 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
/* Folgezettel Plugin Styles */
.folgezettel-help {
margin-top: 1em;
padding: 1em;
background-color: var(--background-secondary);
border-radius: 8px;
}
.folgezettel-help p {
margin-bottom: 0.5em;
}
.folgezettel-help table {
width: 100%;
border-collapse: collapse;
margin-top: 0.5em;
}
.folgezettel-help td {
padding: 0.25em 0.5em;
border-bottom: 1px solid var(--background-modifier-border);
}
.folgezettel-help td:first-child {
font-family: var(--font-monospace);
font-weight: 600;
white-space: nowrap;
width: 100px;
}
.folgezettel-code {
font-family: var(--font-monospace);
background-color: var(--background-primary);
padding: 0.1em 0.3em;
border-radius: 4px;
}
/* Modal styling */
.modal-content h2 {
margin-bottom: 1em;
}
/* Validation rule hint in modal */
.folgezettel-rule-hint {
color: var(--text-muted);
font-size: 0.9em;
margin-bottom: 1em;
padding: 0.5em;
background-color: var(--background-secondary);
border-radius: 4px;
border-left: 3px solid var(--interactive-accent);
}
/* Validation hint for custom input */
.folgezettel-validation-hint {
color: var(--text-muted);
font-size: 0.85em;
margin-top: 1em;
font-style: italic;
}
/* Custom input field styling */
.folgezettel-custom-input {
font-family: var(--font-monospace);
}