From 88b1b3360c2ccc0df137923399af2c5914b5ac02 Mon Sep 17 00:00:00 2001 From: David <33458145+davidmcpowell@users.noreply.github.com> Date: Wed, 15 Oct 2025 09:45:11 +0100 Subject: [PATCH] Merge pull request #29042 from overleaf/dp-no-file-dark-mode Fix color of no editor messages in dark mode GitOrigin-RevId: db0f69a634b0531e75ce8e4c89e064cda7d5bec9 --- .../frontend/stylesheets/pages/editor/file-view.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/services/web/frontend/stylesheets/pages/editor/file-view.scss b/services/web/frontend/stylesheets/pages/editor/file-view.scss index 8763153ffa..511de4d114 100644 --- a/services/web/frontend/stylesheets/pages/editor/file-view.scss +++ b/services/web/frontend/stylesheets/pages/editor/file-view.scss @@ -1,3 +1,14 @@ +.ide-redesign-main { + .no-file-selection-message, + .multi-selection-message { + --bs-heading-color: var(--content-primary-themed); + } + + .file-view .no-preview { + color: var(--content-secondary-themed); + } +} + .file-view { padding: var(--spacing-05); text-align: center;