From 97bd0e6f3f0942e955d889b34ebae29554d4cf7b Mon Sep 17 00:00:00 2001 From: Shubham Padia Date: Mon, 21 Oct 2024 04:10:06 +0000 Subject: [PATCH] user_groups: Fix incorrect nesting for .pill-container. 5980f4a502fe93fbcf4da967d4ef913f5c6b5e30 moved the `group_setting_disabled` class from pill container to its parent input group without changing the nesting for the other css properties properly. This commit fixes that. --- web/styles/subscriptions.css | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/web/styles/subscriptions.css b/web/styles/subscriptions.css index 3767a4eb48..493af4947d 100644 --- a/web/styles/subscriptions.css +++ b/web/styles/subscriptions.css @@ -706,13 +706,15 @@ h4.user_group_setting_subsection_title { cursor: not-allowed; } - .input { - pointer-events: none; - } + .pill-container { + .pill { + .exit { + display: none; + } + } - .pill { - .exit { - display: none; + .input { + pointer-events: none; } } }