andrewgioia / mana

Magic: the Gathering mana symbol pictographic font
306 stars 32 forks source link

Half-white mana symbol missing? #6

Closed erg closed 6 years ago

erg commented 8 years ago

Apologies if you have it already, but there's an Unhinged card called Little Girl that has a half-white symbol.

http://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=74257

Awesome font, thanks for the hard work!

andrewgioia commented 8 years ago

Nice! I didn't have it already and never knew about it. I just added a small change to enable half symbols, though it's not ideal as it requires a wrapping span:

<span class="ms-half">
    <i class="ms ms-w ms-cost"></i>
</span>

You can see the example in the index.html file.

I'm going to tinker around to see if it's possible to do it within the <i>'s class list.

andrewgioia commented 6 years ago

Finally closing this one out! I can't imagine this was even being used but v1.4.1 now has a single-element fix for this, without the need for a wrapper class!

<i class="ms ms-w ms-half ms-cost"></i>

The old method with a span is still supported.