From 1c52851bb71c131a196bf9b69941b741e2c155c0 Mon Sep 17 00:00:00 2001 From: Zemoj Date: Mon, 25 Apr 2022 12:00:39 -0700 Subject: [PATCH] Override RSS Header Background Image (#368) After latest release RSS window header shows a tiling image caused by transparent background styling. I looked at other headers and for some reason this is the only one with this tiling image. Before: https://i.imgur.com/Sk1Gs0a.png After: https://i.imgur.com/AgSObmX.png --- css/base/rutorrent/rutorrent-base.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/base/rutorrent/rutorrent-base.css b/css/base/rutorrent/rutorrent-base.css index 1cc005fa..1ad02b5c 100644 --- a/css/base/rutorrent/rutorrent-base.css +++ b/css/base/rutorrent/rutorrent-base.css @@ -1799,4 +1799,8 @@ div#dlgEditRules div.dlg-header { .lf li input.TextboxNormal{ background: var(--transparency-dark-10); color: var(--text); -} \ No newline at end of file +} + +div#dlgEditFilters div.dlg-header{ + background-image:none; +}