-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (89 loc) · 1.86 KB
/
styles.css
File metadata and controls
104 lines (89 loc) · 1.86 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
97
98
99
100
101
102
103
104
.marktex-workbench {
display: flex;
flex-direction: column;
gap: 0.65rem;
height: 100%;
padding: 0.75rem;
}
.marktex-workbench-header {
align-items: center;
display: flex;
gap: 0.5rem;
justify-content: space-between;
}
.marktex-workbench-header h3 {
font-size: var(--font-ui-medium);
margin: 0;
}
.marktex-workbench-actions {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.marktex-workbench-actions button {
font-size: var(--font-ui-smaller);
min-height: 24px;
padding: 2px 8px;
}
.marktex-status {
color: var(--text-muted);
font-size: var(--font-ui-smaller);
margin: 0;
}
.marktex-status.is-running {
color: var(--text-accent);
}
.marktex-diagnostics {
border-left: 3px solid var(--background-modifier-border);
color: var(--text-muted);
font-size: var(--font-ui-smaller);
padding-left: 0.55rem;
}
.marktex-diagnostic.is-warning {
color: var(--text-warning);
}
.marktex-diagnostic.is-error {
color: var(--text-error);
}
.marktex-preview-panes {
display: grid;
flex: 1;
gap: 0.75rem;
grid-template-rows: minmax(180px, 0.45fr) minmax(240px, 0.55fr);
min-height: 0;
}
.marktex-pane {
display: flex;
flex-direction: column;
min-height: 0;
}
.marktex-pane h4 {
color: var(--text-muted);
font-size: var(--font-ui-smaller);
margin: 0 0 0.35rem;
}
.marktex-latex-source {
background: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
color: var(--text-normal);
flex: 1;
font-family: var(--font-monospace);
font-size: var(--font-ui-smaller);
line-height: 1.35;
min-height: 0;
resize: none;
width: 100%;
}
.marktex-pdf-frame {
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
flex: 1;
min-height: 0;
width: 100%;
}
.marktex-empty-pdf {
color: var(--text-muted);
font-size: var(--font-ui-smaller);
margin: 0;
}