mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
90 lines
1.3 KiB
SCSS
90 lines
1.3 KiB
SCSS
.d3-tip span {
|
|
color: #ff00c7;
|
|
}
|
|
.domain {
|
|
display: none;
|
|
}
|
|
.axis line {
|
|
stroke-width: 1px;
|
|
stroke: #eee;
|
|
shape-rendering: crispedges;
|
|
}
|
|
.axis text {
|
|
fill: #888;
|
|
}
|
|
rect {
|
|
fill: lighten( #339cff, 10%);
|
|
fill-opacity: 0.5;
|
|
}
|
|
rect:hover {
|
|
fill-opacity: 1;
|
|
}
|
|
|
|
.sub-bar rect {
|
|
fill: darken(#339cff, 20%);
|
|
}
|
|
|
|
.d3-tip {
|
|
line-height: 1;
|
|
font-weight: bold;
|
|
padding: 12px;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
color: #fff;
|
|
border-radius: 2px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Creates a small triangle extender for the tooltip */
|
|
.d3-tip:after {
|
|
box-sizing: border-box;
|
|
display: inline;
|
|
font-size: 10px;
|
|
width: 100%;
|
|
line-height: 1;
|
|
color: rgba(0, 0, 0, 0.8);
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.d3-tip h5 {
|
|
color: #CCC;
|
|
}
|
|
|
|
.d3-tip span {
|
|
color: lightgreen;
|
|
}
|
|
|
|
/* Northward tooltips */
|
|
.d3-tip.n:after {
|
|
content: "\25BC";
|
|
margin: -1px 0 0 0;
|
|
top: 100%;
|
|
left: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Eastward tooltips */
|
|
.d3-tip.e:after {
|
|
content: "\25C0";
|
|
margin: -4px 0 0 0;
|
|
top: 50%;
|
|
left: -8px;
|
|
}
|
|
|
|
/* Southward tooltips */
|
|
.d3-tip.s:after {
|
|
content: "\25B2";
|
|
margin: 0 0 1px 0;
|
|
top: -8px;
|
|
left: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Westward tooltips */
|
|
.d3-tip.w:after {
|
|
content: "\25B6";
|
|
margin: -4px 0 0 -1px;
|
|
top: 50%;
|
|
left: 100%;
|
|
}
|