-
Notifications
You must be signed in to change notification settings - Fork 1
/
SanKEY_styles.css
59 lines (57 loc) · 1.5 KB
/
SanKEY_styles.css
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
rect[identifier=SankeyNode]:hover {
filter: contrast(1.1) brightness(1.05) drop-shadow(0px 0px 1.7px #000000);
}
.focused_SankeyNode{
filter: contrast(1.1) brightness(1.05) drop-shadow(0px 0px 1.7px #000000);
}
.hovered_SankeyLink
{
stroke: rgb(0, 0, 0);
stroke-width: 1px;
}
@keyframes fadingAnimationNodeInfo {
0%{opacity: 0}
100%{opacity: 0.95}
}
@keyframes fadingAnimationLinkInfo {
0%{opacity: 0;}
100%{opacity: 0.95}
}
.node_info_div {
position: fixed;
background-color: #74a8bb;
color: white;
border: solid 2px #c8d3db;
font-size: 18px;
min-width: 50px;
padding: 0 5px 0 5px;
text-align: center;
animation: fadingAnimationNodeInfo 0.3s;
border-radius: 10px;
opacity: 0.95;
}
.link_info_div
{
position: fixed;
background-color: #74a8bb;
color: white;
border: solid 2px #c8d3db;
font-size: 12px;
max-width: 100px;
padding: 0 5px 0 5px;
text-align: center;
animation: fadingAnimationLinkInfo 0.3s;
border-radius: 10px;
opacity: 0.95;
overflow-wrap: break-word;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
touch-action: pinch-zoom;
}