Fixing 1000000 symbol class

This commit is contained in:
Andrew Gioia 2017-03-09 15:54:50 -05:00
parent dbc7e98a69
commit 0735159a32
7 changed files with 23 additions and 22 deletions

View File

@ -1,4 +1,4 @@
# Mana v1.3.0
# Mana v1.3.1
## The Magic: the Gathering mana symbol font!
@ -54,14 +54,15 @@ Attribution is **greatly appreciated** but not required!
## Changelog
* v0.1 - initial font creation and CSS/LESS files added
* v0.2 - Flashback symbol added
* v0.3 - phyrexian mana classes use MTGJson standard; project-specific LESS prefix added (@JayGray)
* v0.4 - adding classes for 16, 17, 18, 19, and 20 symbols
* v0.5 - adding the new colorless wastes symbol
* v0.6 - adding double-faced card symbols (day, night)
* v1.0 - new documentation page at http://andrewgioia.github.io/Mana/
* v1.0.1 - added classes for -12 and -14 loyalty (sorry Jace and Karn!)
* v1.1.0 - added the new Energy symbol
* v1.2.0 - added DFC symbols for the Origins planeswalkers (ignite and spark) and the Eldritch Moon meld cards (emrakul and moon)
* v1.3.1 - fixed class name issue for 1,000,000 symbol
* v1.3.0 - added Guild and Clan symbols
* v1.2.0 - added DFC symbols for the Origins planeswalkers (ignite and spark) and the Eldritch Moon meld cards (emrakul and moon)
* v1.1.0 - added the new Energy symbol
* v1.0.1 - added classes for -12 and -14 loyalty (sorry Jace and Karn!)
* v1.0 - new documentation page at http://andrewgioia.github.io/Mana/
* v0.6 - adding double-faced card symbols (day, night)
* v0.5 - adding the new colorless wastes symbol
* v0.4 - adding classes for 16, 17, 18, 19, and 20 symbols
* v0.3 - phyrexian mana classes use MTGJson standard; project-specific LESS prefix added (@JayGray)
* v0.2 - Flashback symbol added
* v0.1 - initial font creation and CSS/LESS files added

View File

@ -2,15 +2,15 @@
* Global */
@font-face {
font-family: 'Mana';
src: url('../fonts/mana.eot?v=1.3.0');
src: url('../fonts/mana.eot?#iefix&v=1.3.0') format('embedded-opentype'), url('../fonts/mana.woff?v=1.3.0') format('woff'), url('../fonts/mana.ttf?v=1.3.0') format('truetype'), url('../fonts/mana.svg?v=1.3.0#mana') format('svg');
src: url('../fonts/mana.eot?v=1.3.1');
src: url('../fonts/mana.eot?#iefix&v=1.3.1') format('embedded-opentype'), url('../fonts/mana.woff?v=1.3.1') format('woff'), url('../fonts/mana.ttf?v=1.3.1') format('truetype'), url('../fonts/mana.svg?v=1.3.1#mana') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'MPlantin';
src: url('../fonts/mplantin.eot?v=1.3.0');
src: url('../fonts/mplantin.eot?#iefix&v=1.3.0') format('embedded-opentype'), url('../fonts/mplantin.woff?v=1.3.0') format('woff'), url('../fonts/mplantin.ttf?v=1.3.0') format('truetype'), url('../fonts/mplantin.svg?v=1.3.0#mplantin') format('svg');
src: url('../fonts/mplantin.eot?v=1.3.1');
src: url('../fonts/mplantin.eot?#iefix&v=1.3.1') format('embedded-opentype'), url('../fonts/mplantin.woff?v=1.3.1') format('woff'), url('../fonts/mplantin.ttf?v=1.3.1') format('truetype'), url('../fonts/mplantin.svg?v=1.3.1#mplantin') format('svg');
font-weight: normal;
font-style: normal;
}
@ -289,7 +289,7 @@
.ms-100 {
width: 2.4em;
}
.ms-100000 {
.ms-1000000 {
width: 5.4em;
}
/**
@ -666,7 +666,7 @@
.ms-100:before {
content: "\e900";
}
.ms-100000:before {
.ms-1000000:before {
content: "\e901";
}
/**

2
css/mana.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -127,7 +127,7 @@
<i class="ms ms-1-2 ms-cost ms-shadow"></i>
<i class="ms ms-infinity ms-cost ms-shadow"></i>
<i class="ms ms-100 ms-cost ms-shadow"></i>
<i class="ms ms-100000 ms-cost ms-shadow"></i>
<i class="ms ms-1000000 ms-cost ms-shadow"></i>
</p>
<h3>Future Sight type symbols</h3>
<p>

View File

@ -287,6 +287,6 @@
.@{ms-prefix}-100 {
width: 2.4em;
}
.@{ms-prefix}-100000 {
.@{ms-prefix}-1000000 {
width: 5.4em;
}

View File

@ -100,7 +100,7 @@
* Un-set symbols */
.@{ms-prefix}-100:before { content: "\e900"; }
.@{ms-prefix}-100000:before { content: "\e901"; }
.@{ms-prefix}-1000000:before { content: "\e901"; }
/**
* Planeswalker symbols */

View File

@ -2,7 +2,7 @@
* Global */
@ms-font-path: '../fonts';
@ms-version: '1.3.0';
@ms-version: '1.3.1';
@ms-font-size-base: 14px;
@ms-prefix: ms;
@ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif';