ziglang / zig

General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
https://ziglang.org
MIT License
34.98k stars 2.56k forks source link

fuzzer web interface: put the source view into a scrolling box so the main UI doesn't go offscreen #20984

Open andrewrk opened 3 months ago

andrewrk commented 3 months ago

Extracted from #20958.

All the UI elements on the page should use position: absolute and then set the bottom and right properties. The main window should not scroll, so that all the UI widgets are visible at the same time.

Related:

geon commented 3 months ago

I would suggest the opposite: Let the main window scroll, but position UI elements with position: fixed; to make them stay on screen.

I find that aligns better with web dev and accessibility.