main
css 62 lines 995 Bytes
Raw
1 .List {
2 /**
3 * The decision to suppress the default (horizontal) scroll bars is intentional.
4 * The snapshot selector is small enough that the scrollbar renders it essentially useless.
5 * There are two alternative navigation mechanisms (arrow keys and arrow buttons).
6 * If necessary, we could also expand the click-and-drag mechanism to scroll.
7 */
8 overflow-x: hidden !important;
9 }
10
11 .Tooltip {
12 margin-top: 2.5rem;
13 }
14
15 .TooltipList {
16 list-style: none;
17 padding: 0;
18 margin: 0;
19 }
20
21 .TooltipListItem {
22 display: flex;
23 }
24
25 .TooltipLabel {
26 font-weight: bold;
27 margin-right: 0.25rem;
28 }
29 .TooltipLabel:after {
30 content: ':';
31 }
32
33 .TooltipValue {
34 flex-grow: 1;
35 text-align: end;
36 }
37
38 .DurationsWrapper {
39 flex-grow: 1;
40 }
41
42 .DurationsList {
43 list-style: none;
44 margin: 0 0 0 1rem;
45 padding: 0;
46 }
47
48 .DurationsListItem {
49 display: flex;
50 }
51
52 .DurationsLabel {
53 margin-right: 0.25rem;
54 }
55 .DurationsLabel:after {
56 content: ':';
57 }
58
59 .DurationsValue {
60 flex-grow: 1;
61 text-align: end;
62 }