Fixing the rarity classes to use the prefix

This commit is contained in:
Andrew Gioia 2015-03-15 17:40:32 -04:00
parent f75e052d18
commit cc07053943
3 changed files with 10 additions and 10 deletions

View File

@ -40,16 +40,16 @@
}
/**
* Rarity colors */
.common {
color: #444;
.ss-common {
color: #333;
}
.uncommon {
.ss-uncommon {
color: #7795A1;
}
.rare {
.ss-rare {
color: #A58E4A;
}
.mythic {
.ss-mythic {
color: #A2472A;
}
/**

2
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,10 +1,10 @@
/**
* Rarity colors */
.common { color: #444; }
.@{prefix}-common { color: #333; }
.uncommon { color: #7795A1; }
.@{prefix}-uncommon { color: #7795A1; }
.rare { color: #A58E4A; }
.@{prefix}-rare { color: #A58E4A; }
.mythic { color: #A2472A; }
.@{prefix}-mythic { color: #A2472A; }