From 84b0fdce257cbf2471f703fc9840c8edeb1a0408 Mon Sep 17 00:00:00 2001 From: Florian Hotze Date: Wed, 9 Oct 2024 17:03:05 +0200 Subject: [PATCH] Remove unnecessary !important from block style fixes inside f7-card (#2804) Minor regression from #2801. This fixes difficulties with overwriting that style in widgets. Signed-off-by: Florian Hotze --- bundles/org.openhab.ui/web/src/css/app.styl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/org.openhab.ui/web/src/css/app.styl b/bundles/org.openhab.ui/web/src/css/app.styl index 290c55fd91..402465ffdb 100644 --- a/bundles/org.openhab.ui/web/src/css/app.styl +++ b/bundles/org.openhab.ui/web/src/css/app.styl @@ -313,8 +313,8 @@ html // Fix safe area issues inside f7-card components, where safe areas are already respected by the f7-card itself .card .block - padding-left var(--f7-block-padding-horizontal) !important - padding-right var(--f7-block-padding-horizontal) !important + padding-left var(--f7-block-padding-horizontal) + padding-right var(--f7-block-padding-horizontal) .media-item .item-content padding-left var(--f7-list-item-padding-horizontal)