In my stylesheet, I have a specific rule that styles various input fields and select elements. However, I'm facing an issue where this styling is being applied to all text fields on the page, including ones inside certain elements with a specific class.
The issue arises because I am using ckeditor which creates dialog boxes with input fields that should not be affected by the general styling rule. Adding
:not(.cke_editor_pageContent_dialog input)
did not solve the problem as expected.
I have been searching for a solution to prevent the styling from affecting these specific input fields within the ckeditor dialog boxes, but so far, I haven't found a satisfactory answer.