diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-10-20 17:35:51 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-10-20 17:35:51 -0400 |
commit | b8c6747e891d789b1487013d7d26e19988a78597 (patch) | |
tree | 9a86348472ceb730bbfb009ba0b0773e190de8eb /src/SMAPI.Web | |
parent | 39bacfa8688232e11850cdf2c0b0b4c953be1d76 (diff) | |
download | SMAPI-b8c6747e891d789b1487013d7d26e19988a78597.tar.gz SMAPI-b8c6747e891d789b1487013d7d26e19988a78597.tar.bz2 SMAPI-b8c6747e891d789b1487013d7d26e19988a78597.zip |
tone down background colors (#597)
Diffstat (limited to 'src/SMAPI.Web')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/css/mods.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/css/mods.css b/src/SMAPI.Web/wwwroot/Content/css/mods.css index fee01450..3b7a17ce 100644 --- a/src/SMAPI.Web/wwwroot/Content/css/mods.css +++ b/src/SMAPI.Web/wwwroot/Content/css/mods.css @@ -64,7 +64,7 @@ table.wikitable > caption { #mod-list tr[data-status="Ok"], #mod-list tr[data-status="Optional"] { - background: #9F9; + background: #BFB; } #mod-list tr[data-status="Workaround"], @@ -73,12 +73,12 @@ table.wikitable > caption { } #mod-list tr[data-status="Broken"] { - background: #F99; + background: #FBB; } #mod-list tr[data-status="Obsolete"], #mod-list tr[data-status="Abandoned"] { - background: #999; + background: #BBB; opacity: 0.7; } |