From 56261003860155de2044ab8eb4ed1fdfb1dfaf64 Mon Sep 17 00:00:00 2001 From: sap-lh Date: Fri, 17 Jul 2026 13:15:26 -0300 Subject: [PATCH] fix(ui5-date-picker): Fix background vs foreground width mismatch. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added back a `width:100%` property that was removed in 89ccfb8. This property keeps the datepicker body width in sync with its background width. It might have been accidentally removed, since its counterpart in DateTimePicker.css is still used. Fixes: #13223 Signed-off-by: Léo Hardt --- packages/main/src/themes/DatePicker.css | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/main/src/themes/DatePicker.css b/packages/main/src/themes/DatePicker.css index ec4403089676d..216c79f6622e8 100644 --- a/packages/main/src/themes/DatePicker.css +++ b/packages/main/src/themes/DatePicker.css @@ -41,6 +41,7 @@ } :host .ui5-date-picker-input { + width: 100%; color: inherit; background-color: inherit; border-radius: inherit;