66 lines
1.1 KiB
CSS
Executable File
66 lines
1.1 KiB
CSS
Executable File
/* Local modifications to nv.d3.css so the original stays intact */
|
|
|
|
.nvd3.nv-pie path {
|
|
stroke: #aaa;
|
|
stroke-width: 1px;
|
|
stroke-opacity: 0.5;
|
|
}
|
|
|
|
.nvd3.nv-pie .nv-slice text {
|
|
stroke: none;
|
|
stroke-width: 0;
|
|
font-size: smaller;
|
|
}
|
|
|
|
.nv-legendWrap rect {
|
|
fill: transparent;
|
|
stroke: #aaa;
|
|
stroke-width: 1px;
|
|
stroke-opacity: 1;
|
|
}
|
|
|
|
.clickable .nv-slice:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.piechart-label {
|
|
fill: red;
|
|
/*text-transform: uppercase;*/
|
|
font-size: larger;
|
|
}
|
|
|
|
.nvtooltip {
|
|
font-family: "Chalet-LondonSixty";
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
background-color: #393939; /* same as the nav */
|
|
color: #fff;
|
|
|
|
transition: opacity 100ms linear;
|
|
transition-delay: 100ms;
|
|
}
|
|
|
|
.nvtooltip table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.nvtooltip table td {
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
.donut-label {
|
|
fill: #999999;
|
|
font-family: "Chalet-LondonSixty";
|
|
font-size: 20px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.pie-label {
|
|
fill: #999999;
|
|
font-family: "Chalet-LondonSixty";
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
}
|