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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
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;
}
h1 {
margin: 0;
background: rgb(128, 150, 174);
color: white;
padding: 0.3em;
}
#top p {
margin-right: 320px; /* 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: all-scroll;
}
g.node rect {
stroke: #e5e5e5;
stroke-width: 2px;
cursor: pointer; /* move is semantically better but looks the same as all-scroll */
}
g.node rect.explored {
fill: rgba(206, 236, 221, 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;
}
.plus-icon use {
display: none;
}
.plus-icon:hover use {
display: visible;
}
.link {
fill: none;
stroke-width: 2px;
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;
}
|