mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
41 lines
499 B
Plaintext
41 lines
499 B
Plaintext
|
|
.chart {
|
|
.user-select-none();
|
|
display: inline-block;
|
|
margin: 1em;
|
|
//width:100%;
|
|
//height:100%;
|
|
cursor: default;
|
|
|
|
h3 {
|
|
text-align: center;
|
|
|
|
&[ng-click] {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
svg {
|
|
.axis {
|
|
|
|
line, path {
|
|
fill: none;
|
|
stroke: @primary-disabled;
|
|
}
|
|
|
|
text {
|
|
font-size: 0.75em;
|
|
fill: @primary-disabled;
|
|
}
|
|
|
|
&.y {
|
|
text tspan:first-child {
|
|
fill: @primary;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|