From 4de4cbc53a05e643f29a0816ef788984394718e1 Mon Sep 17 00:00:00 2001 From: monkey-debugger <64543651+monkey-debugger@users.noreply.github.com> Date: Fri, 18 Jun 2021 20:48:39 +0200 Subject: [PATCH] Fix for alert-info modal in jackett The .alert-info didn't have a background because the `background-color` property should've been `background` instead --- CSS/themes/jackett/jackett-base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CSS/themes/jackett/jackett-base.css b/CSS/themes/jackett/jackett-base.css index 3fcb8a6d..aff625a2 100644 --- a/CSS/themes/jackett/jackett-base.css +++ b/CSS/themes/jackett/jackett-base.css @@ -215,6 +215,6 @@ fieldset[disabled] .form-control { .alert-info { color: #ffffff; - background-color: var(--modal-bg-color); + background: var(--modal-bg-color); border-color: transparent; -} \ No newline at end of file +}