diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-04-16 20:15:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 20:15:24 -0400 |
commit | 36af2cf8ac46b3fce7144efdb6fcc2d3a71593fb (patch) | |
tree | b2bd895befa449ac8fb983755fc9f337e25926e0 /src/SMAPI.Web/wwwroot/Content/css/log-parser.css | |
parent | d486d940bae57f627fbe3210bbfa611a5586c8e8 (diff) | |
parent | 446205c7bd342422f4b4f14d6c8f36dc0b6cf468 (diff) | |
download | SMAPI-36af2cf8ac46b3fce7144efdb6fcc2d3a71593fb.tar.gz SMAPI-36af2cf8ac46b3fce7144efdb6fcc2d3a71593fb.tar.bz2 SMAPI-36af2cf8ac46b3fce7144efdb6fcc2d3a71593fb.zip |
Merge pull request #841 from KhloeLeclair/safe-regex
[Website] Improve regex safety for the log viewer
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/css/log-parser.css')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/css/log-parser.css | 7 |
1 files changed, 6 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 41b54e11..1d457e35 100644 --- a/src/SMAPI.Web/wwwroot/Content/css/log-parser.css +++ b/src/SMAPI.Web/wwwroot/Content/css/log-parser.css @@ -187,6 +187,11 @@ table caption { margin-top: 0.5em; } +#filters .filter-error { + color: #880000; +} + +#filters .filter-error, #filters .stats { margin-top: 0.5em; font-size: 0.75em; @@ -210,7 +215,7 @@ table caption { @media (max-width: 1019px) { #filters:not(.sticky) { - width: calc(100vw - 3em); + width: calc(100vw - 5em); } #filters { |