Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion css/base/qbittorrent/qbittorrent-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
3 changes: 0 additions & 3 deletions css/defaults/servarr-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,6 @@ a:hover {
background: var(--transparency-dark-25);
}

[class*="ProgressBar-purple-"] {
background-color: rgb(var(--accent-color));
}

/* ITEM PAGE */

Expand Down
6 changes: 6 additions & 0 deletions docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
Loading