statgen / locuszoom

A Javascript/d3 embeddable plugin for interactively visualizing statistical genetic data from customizable sources.
https://statgen.github.io/locuszoom/
MIT License
154 stars 29 forks source link

Dropdown menu size issues when using bootstrap CSS #203

Closed abought closed 3 years ago

abought commented 4 years ago

When using Bootstrap CSS, the display options dropdown is styled incorrectly. This is because bootstrap forces box-sizing: border-box on an * selector, but the widget dropdown size is calculated on the assumption of content-box.

Because of the * selector rule, the most reliable solution would be to explicitly apply border-box (for all consuming sites) and rewrite the sizing logic to use border-box CSS rules (eg remove margin and padding from calculations).

Screen Shot 2020-08-17 at 5 45 19 PM