## About The Pull Request
Just a fix for a stat panel background color, was broken after -
https://github.com/tgstation/tgstation/pull/92004
Also removed unused goonStyle from it. There is no browserOutput.css in
repo
## Why It's Good For The Game
No dark background in stat panel, even on light theme
Prettier (an auto formatter) is set to only run within the tgui folder
currently. This removes that limitation, allowing it to automatically
format all supported files in the repo (.js, .html, .yml
[etc](https://prettier.io/docs/))
I made a few exceptions for bundled and generated files
I'm of the opinion that code should look uniform and am lazy enough to
want CTRL-S to format files without having to think beyond that
## About The Pull Request
I was not aware of https://github.com/tgstation/tgstation/pull/90278
adding ``scrollable`` to Experiscanner, so I was looking at a fix to
that and found out that it's caused by ``overflow-y`` not working in its
scss panel. The linked PR failed to address that, so clients on 515 now
have 2 scrolls on it, this fixes that.
I checked every other instance to see which other ones might've been
broken, and while none were non-functional, I found the TaychonArray
scss file was completely unused, we replaced it in changes to the
Taychon Array machine itself and related UI changes, so I'm deleting it.
Lastly, I'm making the stat panel use ``auto`` instead of always showing
the scrollbar, because I thought it looked nicer.
## Why It's Good For The Game
Removes double scrollbar for 515 users and makes stat panel not always
have a scrollwheel when it can't even be used.
## Changelog
🆑
fix: Users on 515 no longer have 2 scrollwheels on the experiscanner.
del: The stat panel only shows the scrollwheel when there's something to
scroll to.
/🆑
## About The Pull Request
I have used a small hidden 515 feature, that disables white borders on
elements, if the colour of the element deviates even slightly from the
greyscale
For example, if you set color for skin button #FFFFFF (Pure white),
Byond will add "3D" effect to button. BUT, if you set color to #FEFFFF,
Byond makes it flat
## Why It's Good For The Game
Little more stylish imo
| Dark | Light |
| - | - |
|

|

|
## Changelog
🆑
qol: Sidebar has lost its bulging white lines. And top right buttons now
flat
/🆑
## About The Pull Request
The PR came out a little bigger than I had planned, but creating
separate ones for a couple of little things seemed unnecessary to me.
Let me start with the most important thing: Stat Panel now scales like
TGchat and also looks closer to TGUI!
By default, the Stat Panel font size is tied to the chat font size, but
this can be changed in a couple of clicks...
The rest of the changes are not as big:
1. Stat Panel styles are now more organised
2. The way themes are applied to Byond Skin has been refactored, if
someone decides to make a new theme (maybe me), it won't be necessary to
copy all the elements
3. NumberInput into the general chat settings tab, was changed to slider
4. Reoder tab buttons changed, they are more compact now
5. With the light theme, chat tabs now have a background when
hovering/active tabbing
<details>
<summary>How it look's like</summary>
| New reorder tab buttons | Light Chat tabs |
| - | - |
|

|

|
</details>
<details>
<summary>General Preview</summary>
https://github.com/user-attachments/assets/7647d584-c2fd-41b2-b2ee-c7ee61569d1f
</details>
## Why It's Good For The Game
More accessibility for owners of 2/4k monitors
Better appearance
NumberInput is behaving extremely strangely in chat
## Changelog
🆑
add: Stat Panel now scales like a chat, depends on the font size.
Defaults from the chat font size, but you can separate it.
refactor: Refactored Stat Panel styles and Byond skin theme applying.
Stat Panel now looks more like a TGUI
/🆑
## About The Pull Request
Damn that's a long title.
Admin Verbs can be used in the verb bar with hyphens instead of spaces
again.
## Why It's Good For The Game
Admin muscle memory
## Changelog
refactors the status panel to utilize the tgui/byond communication APIs instead of passing along href data, as well as converts the entirety of it into a datum/tgui_window
Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>