From 28faf0159e55d0187f8678095812de519331d006 Mon Sep 17 00:00:00 2001 From: Kevin <68795862+kevlg@users.noreply.github.com> Date: Thu, 31 Dec 2020 03:59:35 -0600 Subject: [PATCH] Implement dark theme on the modal dialogs (#1674) * Implement dark theme on the modal dialogs Signed-off-by: Kevin Lopez --- style/themes/default-dark.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/style/themes/default-dark.css b/style/themes/default-dark.css index c1f44a33..c39ac33d 100644 --- a/style/themes/default-dark.css +++ b/style/themes/default-dark.css @@ -527,3 +527,17 @@ fieldset[disabled] .form-control { background-color: #353c42bb; padding: 10px; } + +.modal-content { + background: #272c30; +} +.modal-header { + border-bottom-color: #353c42; +} +.modal-footer { + border-top-color: #353c42; +} + +.close { + color: #383838; +}