2016-01-28 22:29:27 +01:00
|
|
|
/**
|
|
|
|
* @provides phui-chart-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.chart .axis line,
|
|
|
|
.chart .axis path {
|
|
|
|
fill: none;
|
|
|
|
stroke: {$blueborder};
|
|
|
|
shape-rendering: crispEdges;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart .axis text {
|
2019-05-08 15:50:23 +02:00
|
|
|
font: {$basefont};
|
2016-01-28 22:29:27 +01:00
|
|
|
fill: {$darkgreytext};
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart .outer,
|
|
|
|
.chart .inner {
|
|
|
|
shape-rendering: crispEdges;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart .outer {
|
|
|
|
fill: none;
|
|
|
|
stroke: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart .inner {
|
|
|
|
fill: {$lightbluebackground};
|
|
|
|
stroke: {$lightblueborder};
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart .line {
|
|
|
|
fill: none;
|
|
|
|
stroke: {$blue};
|
|
|
|
stroke-width: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart .point {
|
2019-05-09 17:58:11 +02:00
|
|
|
fill: #ffffff;
|
2016-01-28 22:29:27 +01:00
|
|
|
stroke: {$blue};
|
2019-05-09 17:58:11 +02:00
|
|
|
stroke-width: 2px;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
2016-01-28 22:29:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.chart-tooltip {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
width: 120px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 2px;
|
|
|
|
background: {$lightbluebackground};
|
|
|
|
border: 1px solid {$blueborder};
|
|
|
|
border-radius: 8px;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2019-05-08 15:50:23 +02:00
|
|
|
|
|
|
|
.chart-hardpoint {
|
|
|
|
min-height: 480px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .chart-container {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device .chart-container {
|
|
|
|
min-height: 480px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .chart-curtain {
|
|
|
|
width: 300px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart-function-label-list {
|
|
|
|
background: {$lightbluebackground};
|
|
|
|
border: 1px solid {$lightblueborder};
|
|
|
|
padding: 8px 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .chart-function-label-list {
|
|
|
|
margin-top: 23px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chart-function-label-list-item .phui-icon-view {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|