From 262823bdddc23e420074478fe580dd13f8e17844 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 1 Feb 2024 11:56:40 +1100 Subject: [PATCH] Ensure On Demand field doesn't overflow following cell --- app/webpacker/css/admin/products_v3.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/webpacker/css/admin/products_v3.scss b/app/webpacker/css/admin/products_v3.scss index 11df0a7dd8..9cc1d1845f 100644 --- a/app/webpacker/css/admin/products_v3.scss +++ b/app/webpacker/css/admin/products_v3.scss @@ -112,6 +112,7 @@ } td { + position: relative; // Ensure that overflowing content is covered by the following cell. We don't use overflow: hidden because that messes with the popover. background-color: $color-tbl-cell-bg; }