mirror of
https://github.com/apache/superset.git
synced 2026-05-11 19:05:24 +00:00
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.
35 lines
428 B
CSS
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;
|
|
}
|