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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
body {
font-family: Helvetica, arial, freesans, clean, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
width: 100vw;
height: 100vh;
margin: 0px;
}
#page {
margin: 8px;
display: flex; /* use the flex model */
flex-direction: column;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
#top p {
margin-right: 300px; /* Avoid overlap with noty boxes */
}
#svg-container {
flex: 1;
border: 1px solid #ccc; /* width has to be half of SVG_MARGIN */
}
rect.background {
fill: white;
cursor: move;
}
g.node rect {
stroke: #e5e5e5;
stroke-width: 2px;
cursor: pointer;
}
g.node rect.explored {
fill: rgba(167, 224, 196, 0.54);
}
g.node rect.unexplored {
fill: rgba(242, 242, 255, 0.54);
}
g.node text {
/* fill: black; */
fill: #295b8c;
font-size: 15px;
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
font-weight: bold;
text-anchor: middle;
alignment-baseline: middle;
cursor: pointer;
pointer-events: none;
}
.link {
fill: none;
stroke: #000;
stroke-width: 1.5px;
opacity: 0.4;
marker-end: url(#end-arrow);
}
.commitish input {
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
}
.commit-ref {
font-weight: bold;
color: #26894d;
}
.noty_text p {
margin-top: 6px;
margin-bottom: 6px;
}
|