Alters PokemonShowdown when in Teambuilder mode to focus more on the teambuilder, offering an easier layout for building your team or taking screenshots.
Better Teambuilder Layout by anc08
Details
Authoranc08
LicenseNo License
Categorypokemonshowdown
Created
Updated
Size1.6 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Teams are shown in two columns if there is enough room, nickname boxes are extended to fit most nicknames within the size limit, and the other room tabs will only appear at all if there is excess space.
Source code
/* ==UserStyle==
@name Better Teambuilder Layout
@version 20241023.18.03
@namespace https://userstyles.world/user/Adam Cohen
@description Alters PokemonShowdown when in Teambuilder mode to focus on the teambuilder. Teams are shown in two columns if there is enough room, nickname boxes are extended to fit most nicknames within the size limit, and the other room tabs will only appear at all if there is excess space.
@author Adam Cohen
==/UserStyle== */
@-moz-document url-prefix("https://play.pokemonshowdown.com/teambuilder") {
.siderooms {
display: none !important;
}
.ps-room {
width: 0px !important;
left: auto !important;
}
#room-teambuilder {
left: 0 !important;
right: 0 !important;
width: auto !important;
}
.setchart {
width: 660px;
}
.setchart-nickname {
left: -6px;
width: 130px;
}
.setchart-nickname input {
width: 123px;
}
.setcol-details {
width: auto;
margin-left: 10px;
}
@media (min-width:1400px)
{
.teamchart {
display: grid !important;
grid-template:
"format-select format-select" auto
"a a" auto/ 700px 700px;
}
.format-select {
grid-area: format-select;
}
}
@media (min-width:2000px)
{
.siderooms {
display: block !important;
margin-left: 1410px !important;
}
.ps-room {
width: 600px !important;
left: auto !important;
}
#room-teambuilder {
right: 599px !important;
left: 0 !important;
width: auto !important;
}
}
}