-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (74 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
85 lines (74 loc) · 1.67 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
.quick-autocorrect-modal {
display: flex;
flex-direction: column;
gap: 12px;
}
.quick-autocorrect-count,
.quick-autocorrect-message,
.quick-autocorrect-empty {
margin: 0;
}
.quick-autocorrect-count {
color: var(--text-muted);
font-size: var(--font-ui-small);
}
.quick-autocorrect-match {
margin: 0;
padding: 8px 10px;
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
background: var(--background-secondary);
font-size: var(--font-ui-medium);
line-height: 1.4;
overflow-wrap: anywhere;
}
.quick-autocorrect-context {
padding: 12px;
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
background: var(--background-primary-alt);
color: var(--text-normal);
font-size: var(--font-ui-medium);
line-height: 1.6;
overflow-wrap: anywhere;
white-space: pre-wrap;
}
.quick-autocorrect-context-match,
.quick-autocorrect-context-replacement {
padding: 1px 3px;
border-radius: 4px;
font-weight: var(--font-semibold);
}
.quick-autocorrect-context-match {
background: var(--background-modifier-error);
color: var(--text-normal);
}
.quick-autocorrect-context-replacement {
background: var(--background-modifier-success);
color: var(--text-normal);
}
.quick-autocorrect-suggestions,
.quick-autocorrect-actions {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.quick-autocorrect-actions {
margin-top: 6px;
padding-top: 12px;
border-top: 1px solid var(--background-modifier-border);
}
.quick-autocorrect-suggestion,
.quick-autocorrect-action {
width: auto;
min-width: 0;
height: 30px;
padding: 4px 10px;
line-height: 1;
}
.quick-autocorrect-suggestion {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}