tarashia / PokeFarmQoL

PokéFarm QoL
2 stars 3 forks source link

Improve showcase on desktop #36

Open tarashia opened 2 months ago

tarashia commented 2 months ago

Showcases on desktop are hidden by default, similar to the mobile view in the "customize" party view. This was intended, but it should at least be an option to fully display the showcase, while keeping the showcase berries stacked.

Until this is implemented, the following CSS will provide a workaround:

.qolPartyCustomParty:not(.qolHideShowcase) 
#partybox:not(.swap-panels) .showcase:not(:empty) {
  border: 1px solid !important;
  height: unset !important;
  margin: 10px auto !important;
  padding: 4px !important;
  overflow: visible !important;
}

#content .qolPartyCustomParty:not(.qolHideShowcase) 
.showcase:not(:empty) + .mu_navlink.toggle {
  display: none !important;
}