main
css 40 lines 820 Bytes
Raw
1 .Group {
2 transition: all ease-in-out 250ms;
3 }
4
5 .Rect {
6 cursor: pointer;
7 stroke: var(--color-background);
8 transition: all ease-in-out 250ms;
9 }
10
11 .ForeignObject {
12 pointer-events: none;
13 transition: all ease-in-out 250ms;
14 }
15
16 .Highlight {
17 border-radius: 0.125rem;
18 background-color: var(--color-search-match);
19 }
20 .CurrentHighlight {
21 border-radius: 0.125rem;
22 background-color: var(--color-search-match-current);
23 }
24
25 .Div {
26 pointer-events: none;
27 white-space: nowrap;
28 text-overflow: ellipsis;
29 overflow: hidden;
30 font-family: var(--font-family-sans);
31 font-size: var(--font-size-sans-normal);
32 margin-left: 0.25rem;
33 margin-right: 0.25rem;
34 line-height: 1.5;
35 padding: 0 0 0;
36 font-weight: 400;
37 color: var(--color-commit-gradient-text);
38 text-align: left;
39 transition: all ease-in-out 250ms;
40 }