main
css 81 lines 1.35 KB
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-bottom: 0.5rem;
12 user-select: none;
13 display: flex;
14 flex-direction: column;
15 min-height: 0;
16 height: 100%;
17 }
18
19 .RenderInfo {
20 flex: 0 0 auto;
21 display: flex;
22 flex-direction: column;
23 gap: 0.5rem;
24 padding: 0.5rem;
25 border-bottom: 1px solid var(--color-border);
26 background: var(--color-background);
27 }
28
29 .RenderInfoContent {
30 display: flex;
31 flex-direction: column;
32 gap: 0.75rem;
33 }
34
35 .CommitList {
36 flex: 1;
37 min-height: 0;
38 overflow-y: auto;
39 padding: 0.5rem;
40 }
41
42 .Component {
43 flex: 1;
44 color: var(--color-component-name);
45 font-family: var(--font-family-monospace);
46 font-size: var(--font-size-monospace-normal);
47 white-space: nowrap;
48 overflow-x: hidden;
49 text-overflow: ellipsis;
50 }
51
52 .Label {
53 font-weight: bold;
54 margin-bottom: 0.5rem;
55 }
56
57 .CurrentCommit,
58 .Commit {
59 display: block;
60 width: 100%;
61 text-align: left;
62 background: none;
63 border: none;
64 padding: 0.25rem 0.5rem;
65 color: var(--color-text);
66 }
67
68 .Commit:focus,
69 .Commit:hover {
70 outline: none;
71 background-color: var(--color-background-hover);
72 }
73
74 .CurrentCommit {
75 background-color: var(--color-background-selected);
76 color: var(--color-text-selected);
77 }
78
79 .CurrentCommit:focus {
80 outline: none;
81 }