d16b417a24
The issue-view "status" control was a native <select> carrying the fomantic "ui compact dropdown" class. Fomantic enhanced it into an overlay menu that rendered mispositioned and stacked BEHIND .issue-content, so the status options were present in the DOM but invisible (a raised z-index did not rescue it — the menu was trapped in an ancestor stacking context). Nothing in web_src/js depends on it being a fomantic dropdown. Drop the fomantic class so it stays a plain native <select> (the browser renders its option list, so the options always show), and move the element's inline style= into a new stylesheet web_src/css/repo/issue-status.css (imported from index.css), per the "no inline styles" standard.