This commit is contained in:
Ethan Strader 2026-04-26 15:17:41 -07:00 committed by GitHub
commit a38655392d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View File

@ -199,7 +199,7 @@ export class PSSearchResults extends preact.Component<{
href={`${this.URL_ROOT}abilities/${id}`} class={id === this.abilityId ? 'cur' : ''}
data-target="push" data-entry={`ability|${ability.name}`}
>
<span class="col namecol">{id ? this.renderName(ability.name, matchStart, matchEnd) : <i>(no ability)</i>}</span>
<span class="col abilitynamecol">{id ? this.renderName(ability.name, matchStart, matchEnd) : <i>(no ability)</i>}</span>
{errorMessage}

View File

@ -171,6 +171,16 @@
color: #000000;
font-size: 10pt;
}
.dexlist .abilitynamecol {
padding-top: 6px;
height: 23px;
width: 152px;
color: #000000;
font-size: 10pt;
text-wrap: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.dexlist .pokemonnamecol {
padding-top: 6px;
height: 23px;