forked from nicoespeon/gitgraph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitgraph.css
More file actions
33 lines (31 loc) · 560 Bytes
/
gitgraph.css
File metadata and controls
33 lines (31 loc) · 560 Bytes
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
.gitgraph-tooltip {
position: absolute;
margin-top: -15px;
margin-left: 25px;
padding: 10px;
border-radius: 5px;
background: #EEE;
color: #333;
text-align: center;
font-size: 14px;
line-height: 20px;
}
.gitgraph-tooltip:after {
position: absolute;
top: 10px;
left: -18px;
width: 0;
height: 0;
border-width: 10px;
border-style: solid;
border-color: transparent;
border-right-color: #EEE;
content: "";
}
.gitgraph-detail {
position: absolute;
padding: 10px;
text-align: justify;
width: 600px;
display: none;
}