From f6d972048bed34ec15cec05b20ddc2ee3699133c Mon Sep 17 00:00:00 2001 From: Shubham Padia Date: Mon, 29 Sep 2025 15:58:45 +0000 Subject: [PATCH] css: Remove redundant border related css for .preview_message_area. We removed the border declaration in #29953. We do not need the border-radius anymore, nor the border-color declaration in dark_theme.css. --- web/styles/compose.css | 2 -- web/styles/dark_theme.css | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/web/styles/compose.css b/web/styles/compose.css index add8707ec3..a5ff31a59e 100644 --- a/web/styles/compose.css +++ b/web/styles/compose.css @@ -1677,8 +1677,6 @@ textarea.new_message_textarea { .preview_message_area { padding: 5px 5px 0; overflow: auto; - - border-radius: 3px 3px 0 0; } .markdown_preview_spinner { diff --git a/web/styles/dark_theme.css b/web/styles/dark_theme.css index 3b140d62fd..f87466749e 100644 --- a/web/styles/dark_theme.css +++ b/web/styles/dark_theme.css @@ -110,8 +110,7 @@ /* Not that .message_row (below) needs to be more contrast on dark theme */ .message-feed .recipient_row, .message_row, - .overlay-message-row .overlay-message-info-box, - .preview_message_area { + .overlay-message-row .overlay-message-info-box { border-color: hsl(0deg 0% 0% / 40%); }