main
css 59 lines 922 Bytes
Raw
1 .Toolbar {
2 height: 2.25rem;
3 padding: 0 0.5rem;
4 flex: 0 0 auto;
5 display: flex;
6 align-items: center;
7 border-bottom: 1px solid var(--color-border);
8 }
9
10 .Content {
11 padding: 0.5rem;
12 user-select: none;
13 overflow: auto;
14 }
15
16 .List {
17 list-style: none;
18 margin: 0;
19 padding: 0;
20 }
21
22 .ListItem {
23 margin: 0 0 0.5rem;
24 }
25
26 .Label {
27 overflow: hidden;
28 text-overflow: ellipsis;
29 font-weight: bold;
30 }
31
32 .Value {
33 font-family: var(--font-family-monospace);
34 font-size: var(--font-size-monospace-normal);
35 }
36
37 .NothingSelected {
38 display: flex;
39 align-items: center;
40 justify-content: center;
41 height: 100%;
42 color: var(--color-dim);
43 }
44
45 .DurationsList {
46 list-style: none;
47 margin: 0.25rem 0 0 0;
48 padding: 0;
49 background: var(--color-background-inactive);
50 padding: 0.25rem 0.5rem;
51 border-radius: 0.25rem;
52 }
53
54 .DurationsListItem {
55 margin: 0.25rem 0 0 0;
56 }
57 .DurationsListItem:first-of-type {
58 margin: 0;
59 }