Browse Source

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
pull/211/head
monkey-debugger 3 years ago
committed by GitHub
parent
commit
4de4cbc53a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CSS/themes/jackett/jackett-base.css

4
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;
}
}

Loading…
Cancel
Save