blob: 3f786710620cf7e7f62142ea09d7cf4218910ce3 (
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
48
49
50
|
ntv-toolbar {
display: flex;
border-radius: 4px;
background: var(--color-neutral-800);
width: min-content;
}
ntv-toolbar > section {
display: flex;
gap: 0.5rem;
padding: 0.5rem;
}
ntv-toolbar button[data-variant="menu"] {
border-radius: 4px;
background: var(--color-neutral-700);
padding: 0 0.625rem;
height: 1.5rem;
color: white;
font-size: 0.75rem;
}
ntv-toolbar button[data-variant="icon"] {
display: flex;
justify-content: center;
align-items: center;
border-radius: 4px;
background: var(--color-neutral-700);
padding: 0.125rem 0.625rem;
aspect-ratio: 1;
height: 1.5rem;
color: white;
font-weight: 600;
font-size: 0.75rem;
}
ntv-toolbar button:hover {
background: var(--color-neutral-600);
}
ntv-toolbar input {
border: 1px solid var(--color-neutral-700);
border-radius: 4px;
background: var(--color-neutral-900);
width: 2.5rem;
height: 1.5rem;
color: white;
font-size: 0.75rem;
text-align: center;
}
|