From 4e63794ddd226985bec9ce870f6d89f9bcdbea2f Mon Sep 17 00:00:00 2001 From: Sahil Batra Date: Mon, 26 Dec 2022 17:03:52 +0530 Subject: [PATCH] settings: Fix background-color of save-discard widget in dark theme. The correct background-color for buttons of save-discard widget was not being applied and instead almost transparent color was applied to dark-theme CSS rules. This commit adds ID to the selector such that CSS in app_components.css is preferred over dark-theme CSS. --- static/styles/app_components.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/styles/app_components.css b/static/styles/app_components.css index aa7c0b2e8a..f3ede5c99e 100644 --- a/static/styles/app_components.css +++ b/static/styles/app_components.css @@ -740,7 +740,8 @@ div.overlay { } } -.save-button-controls { +#stream_settings .save-button-controls, +#settings_page .save-button-controls { display: inline; margin-left: 15px;