Email reader docked: always show To/Cc, hide chevron toggle

In docked mode the header already reserves vertical space for the
absolute action cluster, so the To/Cc details fit without any
height tradeoff — force [hidden] open and hide the chevron toggle
so the recipients are always visible there.
This commit is contained in:
pewdiepie-archdaemon
2026-06-12 10:25:42 +09:00
parent e832133e47
commit 37269fd96a
+11
View File
@@ -15408,6 +15408,17 @@ body.right-dock-active:not(.email-doc-split-active) .doc-editor-pane {
margin-top: 2px;
gap: 4px;
}
/* Docked: always show To/Cc there's vertical room reserved for
the action cluster already and the chevron toggle just adds
friction. Force the hidden attribute open and hide the chevron. */
.modal.modal-right-docked .email-reader-meta-details[hidden],
.modal.modal-left-docked .email-reader-meta-details[hidden] {
display: flex !important;
}
.modal.modal-right-docked .email-reader-meta-toggle,
.modal.modal-left-docked .email-reader-meta-toggle {
display: none;
}
.modal.modal-right-docked .email-reader-header > .email-reader-actions,
.modal.modal-left-docked .email-reader-header > .email-reader-actions {
position: static;