-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (82 loc) · 1.49 KB
/
styles.css
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
.jwl {
padding: 0px !important;
.item {
font-size: var(--font-smaller);
padding: 8px 8px 8px 8px;
&:hover {
color: var(--text-normal);
background: var(--background-modifier-active-hover);
border-radius: 4px;
}
p {
color: var(--text-muted);
display: -webkit-box;
/* biome-ignore lint: ; */
box-orient: vertical;
line-clamp: 5;
-webkit-box-orient: vertical;
-webkit-line-clamp: 5;
overflow: hidden;
margin: 0 0 4px 0;
}
p:not(:first-of-type) {
padding-left: 4px;
}
}
}
details {
border-top: 1px solid var(--background-modifier-border);
color: var(--text-muted);
font-size: var(--font-smaller);
margin-top: 4px;
padding: 6px 8px 8px 12px;
}
summary {
color: var(--text-muted);
&:hover {
color: var(--text-normal);
}
}
details[open] {
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
padding-left: 11px;
p {
margin: 8px 0 4px;
}
ul {
margin: 0px;
padding-inline-start: 1.8em;
li {
color: var(--text-muted);
list-style-position: outside;
padding: 4px 0px;
}
}
}
.clear-history:hover {
color: var(--text-normal);
}
.menu-item-title span {
color: var(--text-muted);
font-size: 0.8em;
margin-left: 0.5em;
vertical-align: text-top;
}
.jwl-settings {
textarea {
resize: none;
width: 20em;
height: 5em;
}
select {
width: 5em;
}
}
body.is-phone {
.jwl-settings {
textarea {
width: 100%;
}
}
}