forked from theaspect/ror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
100 lines (86 loc) · 1.45 KB
/
index.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
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
94
95
96
97
98
99
100
text {
opacity: 0;
user-select: none;
-webkit-user-select: none;
cursor: default;
pointer-events: none;
}
.filtered text.name,
.contain text.name {
opacity: 1;
fill: cyan;
text-shadow: 2px 2px black;
}
.contain text.name {
opacity: 0;
}
.contain text.amount {
opacity: 1;
fill: white;
text-shadow: 2px 2px black;
z-index: 10;
}
text.id {
opacity: 1;
fill: LightSkyBlue;
text-shadow: 2px 2px black;
z-index: 10;
font-size: 0.5em;
}
text.mark {
opacity: 1;
fill: cyan;
text-shadow: 1px 1px black;
font-size: 2em;
}
text.mark.ok {
fill: greenyellow;
}
text.mark.fail {
fill: red;
}
circle {
fill-opacity: 0;
stroke-opacity: 0;
stroke: red;
stroke-width: 5;
}
circle.friendly {
stroke: greenyellow;
}
circle.visited {
fill-opacity: 0;
stroke-opacity: 0;
stroke-width: 1;
stroke: black;
}
.filtered circle,
.contain circle,
.hover circle,
.highlight circle {
fill-opacity: 0;
stroke-opacity: 0.8;
}
.copy {
position: absolute;
bottom: 0;
}
#contents {
-moz-column-count: 6;
-webkit-column-count: 6;
column-count: 6;
}
span.tooltip {
position: absolute;
text-align: left;
padding: 0.5em;
max-width: 200px;
font-size: 0.3em;
background: lightsteelblue;
border: 0px;
border-radius: 0.3em;
user-select: none;
-webkit-user-select: none;
cursor: default;
pointer-events: none;
}