diff --git a/css/base/qbittorrent/qbittorrent-base.css b/css/base/qbittorrent/qbittorrent-base.css index ee303ed38b..b952b58b9d 100644 --- a/css/base/qbittorrent/qbittorrent-base.css +++ b/css/base/qbittorrent/qbittorrent-base.css @@ -253,7 +253,7 @@ label { } .dynamicTable th { - background: var(--transparency-dark-25) !important; + background: var(--transparency-dark-25); border-right-color: rgba(255, 255, 255, .08) !important; color: var(--text-hover); } diff --git a/css/defaults/servarr-base.css b/css/defaults/servarr-base.css index 732d55048a..719153f87c 100644 --- a/css/defaults/servarr-base.css +++ b/css/defaults/servarr-base.css @@ -297,9 +297,6 @@ a:hover { background: var(--transparency-dark-25); } -[class*="ProgressBar-purple-"] { - background-color: rgb(var(--accent-color)); -} /* ITEM PAGE */ diff --git a/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark b/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark index 05d005c75a..146380f046 100755 --- a/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark +++ b/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark @@ -10,6 +10,12 @@ if [ "${TP_HOTIO}" = true ]; then APP_FILEPATH='/config/config/qBittorrent.conf' fi +# Validate that the config file exist +if [[ ! -f "${APP_FILEPATH}" ]]; then + echo "qBittorrent config file not found at ${APP_FILEPATH}. Please ensure qBittorrent is configured correctly." + exit 0 +fi + # Backup config if [[ ! -f "${APP_FILEPATH}.bak" ]]; then echo "Creating qBittorrent.conf backup in /config." diff --git a/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run b/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run index 828c413c4c..f9ba66bc50 100755 --- a/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run +++ b/docker-mods/qbittorrent/root/etc/s6-overlay/s6-rc.d/init-mod-themepark/run @@ -10,6 +10,12 @@ if [ "${TP_HOTIO}" = true ]; then APP_FILEPATH='/config/config/qBittorrent.conf' fi +# Validate that the config file exist +if [[ ! -f "${APP_FILEPATH}" ]]; then + echo "qBittorrent config file not found at ${APP_FILEPATH}. Please ensure qBittorrent is configured correctly." + exit 0 +fi + # Backup config if [[ ! -f "${APP_FILEPATH}.bak" ]]; then echo "Creating qBittorrent.conf backup in /config."