mirror of
https://github.com/apache/superset.git
synced 2026-04-27 12:05:24 +00:00
number of issues are addressed here: * x axis formatting doesn't apply in bubble chart * adding option to show/hide bounds of x and y axis * with a flaky 'auto' margin mode, allow user to specify hard values or auto * x label font-size was different than y axis * show more options and reorg Control panels for Axes in `line` viz
38 lines
446 B
CSS
38 lines
446 B
CSS
g.superset path {
|
|
stroke-dasharray: 5, 5;
|
|
}
|
|
|
|
.nvtooltip tr.highlight td {
|
|
font-weight: bold;
|
|
font-size: 15px !important;
|
|
}
|
|
|
|
text.nv-axislabel {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.dist_bar {
|
|
overflow-x: auto !important;
|
|
}
|
|
|
|
.dist_bar svg.nvd3-svg {
|
|
width: auto;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.nv-x text{
|
|
font-size: 12px;
|
|
}
|
|
|
|
.bar {
|
|
overflow-x: auto !important;
|
|
}
|
|
|
|
.bar svg.nvd3-svg {
|
|
width: auto;
|
|
}
|
|
|
|
text.nv-axislabel {
|
|
font-size: 14px !important;
|
|
}
|