From 7bedb1e479434b012081a6e7062c88d9c8216a82 Mon Sep 17 00:00:00 2001 From: Nikola Anachkov Date: Wed, 1 Jul 2026 14:15:22 +0300 Subject: [PATCH 1/2] fix(ui5-select): align value state message header with design spec --- packages/main/src/themes/SelectPopover.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/packages/main/src/themes/SelectPopover.css b/packages/main/src/themes/SelectPopover.css index 89498ca2bcb45..0a8492a21edb7 100644 --- a/packages/main/src/themes/SelectPopover.css +++ b/packages/main/src/themes/SelectPopover.css @@ -4,5 +4,19 @@ } .ui5-select-popover .ui5-responsive-popover-header .row { - justify-content: flex-start; -} \ No newline at end of file + justify-content: flex-start; +} + +/* Align value state message header with Visual Design spec (issue #13308): + - Remove the per-state inset bottom border (box-shadow) + - Add sapContent_HeaderShadow to separate header from options list */ +.ui5-select-popover .ui5-valuestatemessage--error, +.ui5-select-popover .ui5-valuestatemessage--warning, +.ui5-select-popover .ui5-valuestatemessage--success, +.ui5-select-popover .ui5-valuestatemessage--information { + box-shadow: none; +} + +.ui5-select-popover .ui5-valuestatemessage-header { + box-shadow: var(--sapContent_HeaderShadow); +} From 983c23b24a8a2bba3a6d5c7d1635f73e5d3fe021 Mon Sep 17 00:00:00 2001 From: Nikola Anachkov Date: Wed, 1 Jul 2026 14:18:08 +0300 Subject: [PATCH 2/2] fix: unnecessary comments --- packages/main/src/themes/SelectPopover.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/main/src/themes/SelectPopover.css b/packages/main/src/themes/SelectPopover.css index 0a8492a21edb7..43763ae84d018 100644 --- a/packages/main/src/themes/SelectPopover.css +++ b/packages/main/src/themes/SelectPopover.css @@ -7,9 +7,6 @@ justify-content: flex-start; } -/* Align value state message header with Visual Design spec (issue #13308): - - Remove the per-state inset bottom border (box-shadow) - - Add sapContent_HeaderShadow to separate header from options list */ .ui5-select-popover .ui5-valuestatemessage--error, .ui5-select-popover .ui5-valuestatemessage--warning, .ui5-select-popover .ui5-valuestatemessage--success,