diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-03-01 14:10:46 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-03-01 14:10:46 -0500 |
commit | 10c7192bb9f06ff96b9b98a812d9f72a8d77ac76 (patch) | |
tree | 7d4c4ed3498d53e4e8a1c3167fa3937d51b25ecb /src/SMAPI.Web/wwwroot/Content/css | |
parent | 84b9f4336d5b0c7f269a7bfbb94042360574bbaa (diff) | |
parent | 460b440c2ef4f8c7e2015375fa603095146d1f11 (diff) | |
download | SMAPI-10c7192bb9f06ff96b9b98a812d9f72a8d77ac76.tar.gz SMAPI-10c7192bb9f06ff96b9b98a812d9f72a8d77ac76.tar.bz2 SMAPI-10c7192bb9f06ff96b9b98a812d9f72a8d77ac76.zip |
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/css')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/css/log-parser.css | 37 | ||||
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/css/mods.css | 10 |
2 files changed, 33 insertions, 14 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/css/log-parser.css b/src/SMAPI.Web/wwwroot/Content/css/log-parser.css index 2f3dd0a1..ea28cd7d 100644 --- a/src/SMAPI.Web/wwwroot/Content/css/log-parser.css +++ b/src/SMAPI.Web/wwwroot/Content/css/log-parser.css @@ -13,6 +13,13 @@ caption { #output { padding: 10px; overflow: auto; +} + +#output h2 { + margin: -10px 0 10px -10px; +} + +#output table { font-family: monospace; } @@ -43,7 +50,7 @@ table caption { /********* ** Log metadata & filters *********/ -#metadata, #mods, #filters { +.table, #filters { border-bottom: 1px dashed #888888; margin-bottom: 5px; } @@ -53,7 +60,7 @@ table caption { padding-right: 0.7em; } -table#metadata, table#mods { +.table { border: 1px solid #000000; background: #ffffff; border-radius: 5px; @@ -63,8 +70,20 @@ table#metadata, table#mods { box-shadow: 1px 1px 1px 1px #dddddd; } -.invisible { - visibility: hidden; +.mod-entry { + height: 1.8em; +} + +.table > caption { + min-height: 1.3em; +} + +#fix-list { + margin-bottom: 2em; +} + +#updates { + min-width: 10em; } #mods { @@ -87,8 +106,7 @@ table#metadata, table#mods { cursor: default; } -#metadata tr, -#mods tr { +.table tr { background: #eee } @@ -114,11 +132,11 @@ table#metadata, table#mods { display: inline-block; } -#mods .mod-entry.hidden { +.table .hidden { opacity: 0.5; } -#mods .content-packs { +.table .content-packs { margin-left: 1em; font-size: 0.9em; font-style: italic; @@ -128,8 +146,7 @@ table#metadata, table#mods { padding-right: 5px; } -#metadata tr:nth-child(even), -#mods tr:nth-child(even) { +.table tr:nth-child(even) { background: #fff } diff --git a/src/SMAPI.Web/wwwroot/Content/css/mods.css b/src/SMAPI.Web/wwwroot/Content/css/mods.css index 730bfc2e..f42800da 100644 --- a/src/SMAPI.Web/wwwroot/Content/css/mods.css +++ b/src/SMAPI.Web/wwwroot/Content/css/mods.css @@ -128,8 +128,10 @@ table.wikitable > caption { opacity: 0.7; } -#mod-list .mod-closed-source { - color: red; - font-size: 0.8em; - opacity: 0.5; +#mod-list tr[data-status="abandoned"] .mod-page-links, +#mod-list tr[data-status="broken"] .mod-page-links, +#mod-list tr[data-status="obsolete"] .mod-page-links, +#mod-list tr[data-status="unofficial"] .mod-page-links, +#mod-list tr[data-status="workaround"] .mod-page-links { + text-decoration: line-through; } |