OoTRandomizer / OoT-Randomizer

A randomizer for Ocarina of Time.
Other
404 stars 233 forks source link

[Website] Long settings labels overlap with scrollbar #2286

Closed mracsys closed 3 months ago

mracsys commented 3 months ago

image

Example screenshot showing the issue on Chrome 128 on Windows. Found while testing #2272, but it also affects existing settings such as Pre-completed Dungeons Mode and some of the cosmetic settings when testing on Firefox 129:

image

Looks like the label width matches the combobox, but it doesn't account for the 10px left shift on comboBoxLabel. This can be fixed with either change to the comboBoxLabel class:

width: calc(100% - 10px);

or

/*
~~ Remove these styles ~~
position: relative;
left: 10px;
*/
padding-left: 10px;

I haven't dug into the GUI framework to see which is easier to apply.