diff --git a/CHANGELOG.md b/CHANGELOG.md index 1947ed50..df27380c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Timeline not showing events if the event occurs outside the `EXECUTION_STARTED` + `EXECUTION_FINISHED` events ([#180][#180]) - Timeline incorrectly showing some `VF_APEX_CALL_START` events when dealing with ApexPage messages ([#212][#212]) +- Font sizes not correctly scaling in some places ([#238][#238]) ## [1.5.2] - 2022-11-08 @@ -208,3 +209,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#199]: https://github.com/financialforcedev/debug-log-analyzer/issues/199 [#219]: https://github.com/financialforcedev/debug-log-analyzer/issues/219 [#129]: https://github.com/financialforcedev/debug-log-analyzer/issues/129 +[#238]: https://github.com/financialforcedev/debug-log-analyzer/issues/238 diff --git a/log-viewer/resources/css/Settings.css b/log-viewer/resources/css/Settings.css index 91b4c58a..f7480326 100644 --- a/log-viewer/resources/css/Settings.css +++ b/log-viewer/resources/css/Settings.css @@ -6,7 +6,7 @@ display: inline-block; font-family: var(--vscode-editor-font-family); background-color: var(--vscode-textBlockQuote-background); - font-size: 8pt; + font-size: 0.9em; padding: 5px; margin-right: 5px; margin-bottom: 5px; diff --git a/log-viewer/resources/css/Status.css b/log-viewer/resources/css/Status.css index 0688c150..3a3ef4a5 100644 --- a/log-viewer/resources/css/Status.css +++ b/log-viewer/resources/css/Status.css @@ -7,7 +7,7 @@ } #status { align-items: center; - font-size: 10pt; + font-size: 1.1em; margin-bottom: 5px; margin-top: 5px; } diff --git a/log-viewer/resources/css/TimelineView.css b/log-viewer/resources/css/TimelineView.css index 6e962139..255536c9 100644 --- a/log-viewer/resources/css/TimelineView.css +++ b/log-viewer/resources/css/TimelineView.css @@ -26,7 +26,7 @@ } #timelineKey .keyEntry { display: inline-block; - font-size: 8pt; + font-size: 0.9em; padding: 4px; margin-right: 5px; } diff --git a/log-viewer/resources/css/TreeView.css b/log-viewer/resources/css/TreeView.css index 4fb762d6..7348fc78 100644 --- a/log-viewer/resources/css/TreeView.css +++ b/log-viewer/resources/css/TreeView.css @@ -41,7 +41,6 @@ border-radius: 10px; margin: 4px 2px 10px 2px; white-space: nowrap; - font-size: 10pt; } .node { margin-top: 2px;