diff --git a/services/web/frontend/js/features/source-editor/extensions/search.ts b/services/web/frontend/js/features/source-editor/extensions/search.ts index c27dd3692d..4661fc2037 100644 --- a/services/web/frontend/js/features/source-editor/extensions/search.ts +++ b/services/web/frontend/js/features/source-editor/extensions/search.ts @@ -358,7 +358,7 @@ const searchFormTheme = EditorView.theme({ }, '.ol-cm-search-form-position': { flexShrink: 0, - color: 'var(--ol-blue-gray-4)', + color: 'var(--content-secondary)', }, '.ol-cm-search-hidden-inputs': { position: 'absolute', diff --git a/services/web/frontend/stylesheets/app/editor/logs.less b/services/web/frontend/stylesheets/app/editor/logs.less index 6362e453c4..64bd4ff278 100644 --- a/services/web/frontend/stylesheets/app/editor/logs.less +++ b/services/web/frontend/stylesheets/app/editor/logs.less @@ -127,6 +127,10 @@ } .log-entry-content { + &:empty { + display: none; + } + background-color: #fff; padding: @padding-sm; } diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss index 3a4580a1d5..7cf92c6e10 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/logs.scss @@ -141,6 +141,10 @@ } .log-entry-content { + &:empty { + display: none; + } + background-color: var(--bg-light-primary); padding: var(--spacing-04); }