Fix mobile navigation collapse and RCON table overflow#26
Merged
Conversation
Co-authored-by: frasermolyneux <34033625+frasermolyneux@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix mobile navigation and table layout issues
Fix mobile navigation collapse and RCON table overflow
Jan 20, 2026
frasermolyneux
approved these changes
Jan 20, 2026
|
There was a problem hiding this comment.
Pull request overview
This pull request fixes two mobile responsiveness issues: navigation submenu collapse and RCON table overflow.
Changes:
- Added CSS media query to prevent mobile navigation submenus from collapsing immediately after opening by forcing display and disabling transitions on touch devices
- Implemented DataTables responsive plugin for the RCON players table with column priorities ensuring Num and Username remain visible while hiding less critical columns on smaller screens
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
src/XtremeIdiots.Portal.Web/wwwroot/css/responsive-overrides.css |
Added mobile-specific CSS rules (≤768px) to fix submenu collapse issue by forcing visibility and removing transitions |
src/XtremeIdiots.Portal.Web/Views/ServerAdmin/ViewRcon.cshtml |
Enabled DataTables responsive plugin with inline expandable rows, added table-responsive wrapper, improved accessibility with scope attributes, and set column priorities |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Mobile navigation submenus collapsed immediately after opening, preventing item selection. RCON players table overflowed page boundaries on small screens.
Changes
Mobile Navigation (
responsive-overrides.css)display: block !importantRCON Table Responsiveness (
ViewRcon.cshtml)table-responsivedivscope="col"attributes for accessibilityLower priority columns hide on smaller viewports while always keeping player number, username, and admin actions visible. Users tap rows to view hidden columns inline.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.