From acb465ae33e1932c71e57c5a17097938327b215d Mon Sep 17 00:00:00 2001 From: Ali <83188384+testA113@users.noreply.github.com> Date: Thu, 11 Sep 2025 10:53:35 +1200 Subject: [PATCH] fix(node): revert table css selector, add new specific selector [r8s-331] (#1170) --- app/assets/css/vendor-override.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/css/vendor-override.css b/app/assets/css/vendor-override.css index ea9bd499f..4cf5c1da8 100644 --- a/app/assets/css/vendor-override.css +++ b/app/assets/css/vendor-override.css @@ -54,7 +54,8 @@ /* tables inside widgets should extend the full width of the widget, with 20px table cell padding padding on the left and right */ .widget-body:not(.no-padding) > .table, -.widget-body:not(.no-padding) > .widget-content .table { +.widget-body:not(.no-padding) > .widget-content > .table, +.widget-body:not(.no-padding) > .widget-content > form > .table { margin: 0 -20px; width: calc(100% + 40px); max-width: calc(100% + 40px);