diff options
author | Khloe Leclair <xivkhloeleclair@gmail.com> | 2022-04-16 13:55:54 -0400 |
---|---|---|
committer | Khloe Leclair <xivkhloeleclair@gmail.com> | 2022-04-16 13:55:54 -0400 |
commit | 446205c7bd342422f4b4f14d6c8f36dc0b6cf468 (patch) | |
tree | 00cd3bf3e087fa24a00686d5f810e67cbb88b5b8 /src/SMAPI.Web/wwwroot/Content/css | |
parent | e7fd95aafd044d7b8c95b93d0618324254db4eff (diff) | |
download | SMAPI-446205c7bd342422f4b4f14d6c8f36dc0b6cf468.tar.gz SMAPI-446205c7bd342422f4b4f14d6c8f36dc0b6cf468.tar.bz2 SMAPI-446205c7bd342422f4b4f14d6c8f36dc0b6cf468.zip |
Add regex error checking, and display a message to the user when their regular expression has a syntax error. Additionally, use a non-capturing group to surround the user input when `Match whole word` is enabled in case alternates are being used. Finally, add a safety check to highlighting to avoid an infinite loop when zero-length matches happen.
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/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 { |