From f1edf84f4d7e898972eda0ecd46a2632b30822e5 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 10 Dec 2025 17:13:52 +0200 Subject: [PATCH] fix(layout): title background for code notes --- apps/client/src/widgets/note_title.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/apps/client/src/widgets/note_title.css b/apps/client/src/widgets/note_title.css index 7e34aff23..8769c74ae 100644 --- a/apps/client/src/widgets/note_title.css +++ b/apps/client/src/widgets/note_title.css @@ -46,10 +46,14 @@ body.experimental-feature-new-layout { } } + .note-split.type-code:not(.mime-text-x-sqlite) .title-row, + .note-split.type-code:not(.mime-text-x-sqlite) .title-details { + background-color: var(--main-background-color); + } + .title-details { margin-top: 0; contain: none; - opacity: 0.85; display: flex; gap: 0.25em; margin: 0; @@ -62,11 +66,12 @@ body.experimental-feature-new-layout { .note-split.view-mode-default { .title-row { - margin-top: 2em; + padding-top: 2em; + box-sizing: content-box; } .title-details { - margin-bottom: 2em; + padding-bottom: 2em; } }