QOL style that eases putting eggs/pokemon in your party or other places. Makes the menu compact and will hide full fields and sometimes empty ones.
Pokefarm - Hide Full Fields by werewire

Details
Authorwerewire
LicenseCC0 - Public Domain
Categorypokefarm.com
Created
Updated
Code size1.2 kB
Code checksum7d1b043d
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
to add to your site skin copy + paste lines 10 to 21 into the custom css section of your skin
Source code
/* ==UserStyle==
@name Pokefarm - Hide Full Fields
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A QOL userstyle that aims to ease putting eggs/pokemon in your party or other places. Makes the menu compact and will hide full fields and sometimes empty ones in a few cases where the opposite is helpful.
@author Werewire
==/UserStyle== */
@-moz-document url-prefix("https://pokefarm.com/party"), url-prefix("https://pokefarm.com/lab"), url-prefix("https://pokefarm.com/shelter"), url-prefix("https://pokefarm.com/fields"), url-prefix("https://pokefarm.com/summons"), url-prefix("https://pokefarm.com/fishing"), url-prefix("https://pokefarm.com/daycare"), url-prefix("https://pokefarm.com/tournament/shop"), url-prefix("https://pokefarm.com/tournament/history"), url-prefix("https://pokefarm.com/trade"), url-prefix("https://pokefarm.com/supplier") {
/* [disabled] is for browsers/devices supporting CSS2 only.*/
#fieldjumpnav > li > button:disabled, #fieldjumpnav > li > button[disabled] {
display:none;
}
#fieldjumpnav > li {
display: inline-block;
padding: 0px;
flex: 0 0 0px;
}
#fieldjumpnav > li > button {
margin: 4px;
}
}