mirror of
https://github.com/andrewgioia/mana.git
synced 2024-11-21 14:54:45 +00:00
Fixes readme version number and pushes some old changes up
This commit is contained in:
parent
2afc3cab10
commit
6cb7a09bd4
@ -11,6 +11,10 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## Versions
|
||||
|
||||
### [1.9.3] 2020-09-23 Corrects evergreen class name
|
||||
|
||||
* **Fixed:** It's not evergreen abilities that get colorized in Arena, it's set-specific mechanics/abilities. The class name is corrected to be `.ms-mechanic`.
|
||||
|
||||
### [1.9.2] 2020-09-23 Adds evergreen color support
|
||||
|
||||
* **Added:** Class `.ms-evergreen` on ability symbols will apply the gold gradient effect in Arena.
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Mana v1.9.2
|
||||
# Mana v1.9.3
|
||||
|
||||
## The Magic: the Gathering mana symbol font!
|
||||
|
||||
|
10
css/mana.css
10
css/mana.css
@ -1,14 +1,14 @@
|
||||
@font-face {
|
||||
font-family: 'Mana';
|
||||
src: url('../fonts/mana.eot?v=1.9.1');
|
||||
src: url('../fonts/mana.eot?#iefix&v=1.9.1') format('embedded-opentype'), url('../fonts/mana.woff?v=1.9.1') format('woff'), url('../fonts/mana.ttf?v=1.9.1') format('truetype'), url('../fonts/mana.svg?v=1.9.1#mana') format('svg');
|
||||
src: url('../fonts/mana.eot?v=1.9.3');
|
||||
src: url('../fonts/mana.eot?#iefix&v=1.9.3') format('embedded-opentype'), url('../fonts/mana.woff?v=1.9.3') format('woff'), url('../fonts/mana.ttf?v=1.9.3') format('truetype'), url('../fonts/mana.svg?v=1.9.3#mana') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'MPlantin';
|
||||
src: url('../fonts/mplantin.eot?v=1.9.1');
|
||||
src: url('../fonts/mplantin.eot?#iefix&v=1.9.1') format('embedded-opentype'), url('../fonts/mplantin.woff?v=1.9.1') format('woff'), url('../fonts/mplantin.ttf?v=1.9.1') format('truetype'), url('../fonts/mplantin.svg?v=1.9.1#mplantin') format('svg');
|
||||
src: url('../fonts/mplantin.eot?v=1.9.3');
|
||||
src: url('../fonts/mplantin.eot?#iefix&v=1.9.3') format('embedded-opentype'), url('../fonts/mplantin.woff?v=1.9.3') format('woff'), url('../fonts/mplantin.ttf?v=1.9.3') format('truetype'), url('../fonts/mplantin.svg?v=1.9.3#mplantin') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@ -1318,7 +1318,7 @@ span.ms-half > .ms-cost {
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
.ms-evergreen {
|
||||
.ms-mechanic {
|
||||
background: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
|
2
css/mana.min.css
vendored
2
css/mana.min.css
vendored
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
||||
// evergreen ability coloring
|
||||
.@{ms-prefix}-evergreen {
|
||||
.@{ms-prefix}-mechanic {
|
||||
background: @ms-ability-grad;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
|
@ -1,6 +1,6 @@
|
||||
// base variables
|
||||
@ms-font-path: '../fonts';
|
||||
@ms-version: '1.9.2';
|
||||
@ms-version: '1.9.3';
|
||||
@ms-font-size-base: 14px;
|
||||
@ms-prefix: ms;
|
||||
@ms-serif-font: MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mana-font",
|
||||
"version": "1.9.2",
|
||||
"version": "1.9.3",
|
||||
"description": "Magic: the Gathering mana symbol pictographic font",
|
||||
"main": "css/mana.css",
|
||||
"repository": {
|
||||
|
@ -1,4 +1,4 @@
|
||||
.#{$ms-prefix}-evergreen {
|
||||
.#{$ms-prefix}-mechanic {
|
||||
background: $ms-ability-grad;
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
|
@ -1,6 +1,6 @@
|
||||
// base variables
|
||||
$ms-font-path: '../fonts' !default;
|
||||
$ms-version: '1.9.2' !default;
|
||||
$ms-version: '1.9.3' !default;
|
||||
$ms-font-size-base: 14px !default;
|
||||
$ms-prefix: ms !default;
|
||||
$ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif' !default;
|
||||
|
Loading…
Reference in New Issue
Block a user