blob: 441dd5004a5432f65cf26968084d18bb67685aaa (
plain)
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
|
.pluginCard {
display: grid;
grid-template-columns: auto max-content;
margin: var(--spacing-double);
padding: var(--spacing-double);
border: var(--border);
border-radius: var(--border-radius);
background: var(--clr-panel-background);
.pluginInfo {
display: grid;
gap: var(--spacing-half);
}
.name {
font-weight: bold;
}
.filename {
font-size: var(--font-small-size);
color: var(--clr-lesser-foreground);
}
a:has(> &) {
color: inherit;
text-decoration: none;
.name {
color: var(--clr-link-unvisited);
}
&:hover .name {
text-decoration: underline;
}
}
}
.pluginDownloadForm {
max-width: 100% !important;
.row {
grid-template-columns: auto max-content;
align-items: end !important;
input[type="url"] {
width: 100%;
margin-bottom: 0;
}
}
}
|