mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 03:09:12 +00:00
44 lines
594 B
SCSS
44 lines
594 B
SCSS
.viz-bar-chart {
|
|
.highcharts-root {
|
|
.highcharts {
|
|
&-label,
|
|
&-data-label {
|
|
fill: $text-color;
|
|
stroke: $text-color;
|
|
|
|
text {
|
|
font-weight: 100;
|
|
}
|
|
|
|
.highcharts-emphasized {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
&__bar {
|
|
&:hover {
|
|
cursor: pointer;
|
|
transform: scale(1.02, 1);
|
|
height: 18px;
|
|
}
|
|
|
|
&--faded {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
&--faded {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
}
|