diff options
author | danvolchek <volchek2@illinois.edu> | 2019-03-09 18:20:02 -0600 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-03-10 01:40:58 -0500 |
commit | 6cd7e11c1020c40f223dee70a7dd7b2c66296918 (patch) | |
tree | e70efb856ec211faf338c347fea11f11c36ab37e /src/SMAPI.Web/wwwroot/Content/css | |
parent | 810be1fbc71c7808dbdfc5210eb8816d0ad21110 (diff) | |
download | SMAPI-6cd7e11c1020c40f223dee70a7dd7b2c66296918.tar.gz SMAPI-6cd7e11c1020c40f223dee70a7dd7b2c66296918.tar.bz2 SMAPI-6cd7e11c1020c40f223dee70a7dd7b2c66296918.zip |
add log sections implementation
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/css')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/css/log-parser.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/css/log-parser.css b/src/SMAPI.Web/wwwroot/Content/css/log-parser.css index ea28cd7d..7610f12c 100644 --- a/src/SMAPI.Web/wwwroot/Content/css/log-parser.css +++ b/src/SMAPI.Web/wwwroot/Content/css/log-parser.css @@ -219,6 +219,18 @@ table caption { font-weight: bold; } +#log .section-start { + cursor: pointer; +} + +#log .section-toggle-message { + color: blue; +} + +#log .log-message-text { + white-space: pre-wrap; +} + #log { border-spacing: 0; } @@ -233,7 +245,6 @@ table caption { border-bottom: 1px dotted #ccc; border-top: 2px solid #fff; vertical-align: top; - white-space: pre-wrap; } #log td:not(:last-child) { |