From 573c2877471c5cf3b33716740a417cba581f4a2c Mon Sep 17 00:00:00 2001 From: Camille Date: Wed, 25 Jan 2023 16:28:07 +0100 Subject: [PATCH] fix: hide check box from toggle in formula mode --- app/client/widgets/CheckBox.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/client/widgets/CheckBox.css b/app/client/widgets/CheckBox.css index d204b5de..1739ca02 100644 --- a/app/client/widgets/CheckBox.css +++ b/app/client/widgets/CheckBox.css @@ -6,20 +6,20 @@ height: 16px; } -.field_clip.has_cursor > .widget_checkbox { +:not(.formula_field)>.field_clip.has_cursor>.widget_checkbox { cursor: pointer; box-shadow: inset 0 0 0 1px #606060; border-radius: 3px; background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(252,252,252,1) 29%, rgba(239,239,239,1) 50%, rgba(232,232,232,1) 50%, rgba(242,242,242,1) 100%); } -.widget_checkbox:hover:not(.disabled) { +:not(.formula_field)>.field_clip>.widget_checkbox:hover:not(.disabled) { cursor: pointer; box-shadow: inset 0 0 0 1px #606060; border-radius: 3px; background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(252,252,252,1) 29%, rgba(239,239,239,1) 50%, rgba(232,232,232,1) 50%, rgba(242,242,242,1) 100%); } -.widget_checkbox:active:not(.disabled) { +:not(.formula_field)>.field_clip>.widget_checkbox:active:not(.disabled) { background: linear-gradient(to bottom, rgba(147,180,242,1) 0%, rgba(135,168,233,1) 10%, rgba(115,149,218,1) 25%, rgba(115,150,224,1) 37%, rgba(115,153,230,1) 50%, rgba(86,134,219,1) 51%, rgba(130,174,235,1) 83%, rgba(151,194,243,1) 100%); }