Files
superset2/caravel/assets/visualizations/nvd3_vis.css
vera-liu 2132f6715e When the label size is too short, the constant for calculating (#1120)
margin_size does not apply. Also nvd3 auto-adjust font-size of axis
labels.
Temporary solution here: Setting a fixed font-size on nvd3 axis labels
and a minimum threshold for label size.
2016-09-15 16:48:35 -07:00

35 lines
428 B
CSS

g.caravel path {
stroke-dasharray: 5, 5;
}
.nvtooltip tr.highlight td {
font-weight: bold;
font-size: 15px !important;
}
text.nv-axislabel {
// font-weight: bold;
font-size: 14px;
}
.dist_bar .slice_container {
overflow-x: auto;
}
.dist_bar svg.nvd3-svg {
width: auto;
font-size: 14px;
}
.nv-x text{
font-size: 12px;
}
.bar .slice_container {
overflow-x: auto;
}
.bar svg.nvd3-svg {
width: auto;
}