Pulling in Keyrune rarity class changes

This commit is contained in:
Andrew Gioia 2015-03-15 17:41:27 -04:00
parent f2f8db2454
commit 694d8a314e
4 changed files with 12 additions and 12 deletions

View File

@ -18,11 +18,11 @@
"*.json", "*.json",
"*.md" "*.md"
], ],
"_release": "f75e052d18", "_release": "cc07053943",
"_resolution": { "_resolution": {
"type": "branch", "type": "branch",
"branch": "master", "branch": "master",
"commit": "f75e052d18d9e4f2cdc2f76d3fd4a18b1617da82" "commit": "cc07053943316927705e298280032671e77b98bc"
}, },
"_source": "git://github.com/andrewgioia/keyrune.git", "_source": "git://github.com/andrewgioia/keyrune.git",
"_target": "*", "_target": "*",

View File

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

File diff suppressed because one or more lines are too long

View File

@ -1,10 +1,10 @@
/** /**
* Rarity colors */ * 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; }