From 577fa8efb4cd86a4372405e711d453128984238f Mon Sep 17 00:00:00 2001 From: GilbN Date: Wed, 22 Jun 2022 21:25:01 +0200 Subject: [PATCH 1/6] fixes #387 --- .../qbittorrent/root/etc/cont-init.d/98-themepark | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 fe5df1d8..82484143 100644 --- a/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark +++ b/docker-mods/qbittorrent/root/etc/cont-init.d/98-themepark @@ -90,9 +90,9 @@ if [[ ! -d /themepark ]]; then fi sed_file(){ - sed -i "s/<\/body>/<\/body> /g" $1 + sed -i "s/<\/body>/<\/body> /g" $1 sed -i "s/<\/body>/<\/body> /g" $1 - printf 'Stylesheet set to %s on %s\n\n' "${TP_THEME}" "$1" + printf 'Stylesheet set to %s on %s\n\n' "${TP_THEME}" "$1" } # Adding stylesheets @@ -104,10 +104,10 @@ if ! grep -q "${TP_DOMAIN}/css/base" /themepark/public/index.html; then fi if ! grep -q "${TP_DOMAIN}/css/base" /themepark/private/index.html; then - find ./themepark/private -type f -iname *.html | while read fname - do - sed_file $fname - done + find /themepark/private -type f -iname *.html | while read fname + do + sed_file $fname + done fi if ! grep -q "WebUI\\\RootFolder" "${APP_FILEPATH}"; then From 1ebc2669fffcc68903a7afe835f2868c306ab3d0 Mon Sep 17 00:00:00 2001 From: Cloudburst <18114966+C10udburst@users.noreply.github.com> Date: Thu, 23 Jun 2022 17:18:52 +0200 Subject: [PATCH 2/6] fix checkboxes color in pihole --- css/base/pihole/pihole-base.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/css/base/pihole/pihole-base.css b/css/base/pihole/pihole-base.css index 773dddc8..0df2d04a 100644 --- a/css/base/pihole/pihole-base.css +++ b/css/base/pihole/pihole-base.css @@ -499,6 +499,11 @@ border-color: var(--button-color) !important; } + [class*=icheck-]>input:first-child:checked+input[type=hidden]+label::after, + [class*=icheck-]>input:first-child:checked+label::after { + border-color: var(--button-text); + } + /* Input */ input, .form-control, @@ -590,4 +595,4 @@ border-radius: 8px; background: var(--transparency-light-50); background-clip: padding-box; - } \ No newline at end of file + } From fdc6facc33254bc786d4f2a8bd5293781b660f05 Mon Sep 17 00:00:00 2001 From: GilbN Date: Sat, 25 Jun 2022 12:38:58 +0200 Subject: [PATCH 3/6] landing page info --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index ed299cfd..39fc0d4c 100644 --- a/index.html +++ b/index.html @@ -121,9 +121,9 @@

Installation methods include custom docker mods for linuxserver.io containers,

-

custom scripts for select Hotio - containers - and multiple examples of subfiltering using webservers like Nginx and Apache

+

custom scripts for select Hotio containers + and multiple examples of subfiltering using webservers like Nginx, Apache, Caddy and Traefik!

+

There is also a Docker image available for selfhosting the CSS files.

...

Get Started! From aca23a1400d55ecd18f2e6d8ee1684a9dd62833e Mon Sep 17 00:00:00 2001 From: Zafer Balkan Date: Mon, 27 Jun 2022 21:34:43 +0300 Subject: [PATCH 4/6] Fixed color issue with links. Color of the links in Groups tab under Settings is rendered unreadable in dark.css and other dark colored themes. This fixes the link color by matching the text accent color. --- css/base/guacamole/guacamole-base.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/base/guacamole/guacamole-base.css b/css/base/guacamole/guacamole-base.css index ad899665..f0280b99 100644 --- a/css/base/guacamole/guacamole-base.css +++ b/css/base/guacamole/guacamole-base.css @@ -352,6 +352,7 @@ textarea { .user a:visited, +.user-group a:visited, .connection a:visited, .connection-group a:visited { text-decoration: none; @@ -448,6 +449,7 @@ textarea { } .user a:visited, +.user-group a:visited, .connection a:visited, .connection-group a:visited { text-decoration: none; @@ -463,6 +465,7 @@ a.ng-binding:hover:not(.add-user):not(.button) { } .user a, +.user-group a, .connection a, .connection-group a, a.ng-binding:not(.add-user):not(.button) { From c0b5573414a60fb3d4c7e03db9f92c7f9ad1ab31 Mon Sep 17 00:00:00 2001 From: GilbN Date: Mon, 27 Jun 2022 23:27:42 +0200 Subject: [PATCH 5/6] some image fixes --- css/base/guacamole/guacamole-base.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/css/base/guacamole/guacamole-base.css b/css/base/guacamole/guacamole-base.css index f0280b99..77b0f0f9 100644 --- a/css/base/guacamole/guacamole-base.css +++ b/css/base/guacamole/guacamole-base.css @@ -487,6 +487,18 @@ textarea { background: #666; } +img.collapse { + filter: invert(1); +} + +img.expand { + filter: invert(1); +} + +.icon.user-group { + filter: invert(1); +} + /* USER SETTINGS */ .page-tabs .page-list li a[href], .section-tabs li a { From 9ca81cade9db17f6202b1de5769d6145d50f2e0a Mon Sep 17 00:00:00 2001 From: GilbN Date: Tue, 28 Jun 2022 21:01:23 +0200 Subject: [PATCH 6/6] Fixes #390 --- css/base/portainer/portainer-base.css | 40 +++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/css/base/portainer/portainer-base.css b/css/base/portainer/portainer-base.css index b39e9908..25898b27 100644 --- a/css/base/portainer/portainer-base.css +++ b/css/base/portainer/portainer-base.css @@ -311,12 +311,26 @@ ul.sidebar .sidebar-title { .btn-primary, .btn-default, -button { +button, +button h3, +button h5 { color: var(--button-text); background-color: var(--button-color); border-color: var(--button-color); } +.app-react-portainer-environments-wizard-components-Option-Option-module__feature { + --selected-item-color: var(--button-color); + border: 1px solid var(--button-color); + color: var(--button-text) !important; +} +.app-react-portainer-environments-wizard-components-Option-Option-module__feature:hover { + border: 1px var(--button-color); + -webkit-box-shadow: 0 3px 10px -2px rgba(var(--accent-color), 0.8); + box-shadow: 0 3px 10px -2px rgba(var(--accent-color), 0.8); + color: var(--button-text-hover); +} + .btn-default.active, .btn-default:active, .open>.dropdown-toggle.btn-default, @@ -506,7 +520,8 @@ output { /* DROPDOWN MENU */ -.dropdown-menu { +.dropdown-menu, +.tableMenu { background: var(--drop-down-menu-bg); background-repeat: repeat, no-repeat; background-attachment: fixed, fixed; @@ -518,6 +533,27 @@ output { color: var(--text); } +.tableMenu { + background-color: var(--drop-down-menu-bg) !important; +} +.tableMenu .menuContent { + border-bottom: 1px solid var(--transparency-light-15); +} +.widget .widget-body table thead th .table-filter { + color: var(--text-muted); +} +.widget .widget-body table thead th .filter-active { + color: #f0ad4e; + font-size: 12px!important; +} +.table th button.sortable { + color: var(--link-color); +} +.small-select { + background-color: var(--drop-down-menu-bg); + color: var(--text); +} + .dropdown-menu>li>a, .ui-select-bootstrap .ui-select-choices-row>span { color: var(--text);