File size: 728 Bytes
76a7a50 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | [vue-entry="CoreVisualizations.SeriesPicker"] {
display: inline-block;
}
.jqplot-seriespicker {
display: inline-block;
&:not(.open) {
opacity: .55;
}
&.open { // while open, make sure we're above other series picker icons
z-index: 1000;
}
> a {
display: inline-block;
opacity: 0;
position: absolute;
}
position: relative;
}
.jqplot-seriespicker-popover {
position: absolute;
top: -3px;
left: -4px;
}
// In a narrow legend footer the picker stacks onto its own full-width row; widen this
// inline-block wrapper (built in seriesPicker.js) so the picker inside can fill the line.
.jqplot-legend-footer.is-narrow .jqplot-legend-picker > .series-picker-wrapper {
width: 100%;
}
|