From 442c077395567e3d0242495c7dcc4ee38ef9b405 Mon Sep 17 00:00:00 2001 From: Djangoliv Date: Tue, 5 May 2026 15:58:04 +0200 Subject: [PATCH 1/2] fix: add dark mode support on permissions page --- tljh-plasma/tljh_plasma/static/css/style.css | 39 ++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/tljh-plasma/tljh_plasma/static/css/style.css b/tljh-plasma/tljh_plasma/static/css/style.css index 365ece3..2e1aaef 100644 --- a/tljh-plasma/tljh_plasma/static/css/style.css +++ b/tljh-plasma/tljh_plasma/static/css/style.css @@ -144,3 +144,42 @@ fieldset legend { .form-submit button.submit:focus { outline: none; } + +@media (prefers-color-scheme: dark) { + fieldset { + background-color: #2a2a2a; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); + } + + .group-select { + background-color: #3a3a3a; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); + } + + .group-select .form-control { + background-color: #2e2e2e; + border-color: #555; + color: #ddd; + } + + .group-select .form-control:focus { + background-color: #3a3a3a; + border-color: #6a9fd8; + } + + .group-select .remove-group { + color: #ccc; + } + + .group-select .remove-group:hover { + color: #fff; + } + + .env-owner { + color: #aaa; + } + + .form-submit { + background-color: transparent; + } +} From 0b6803c1e22bbcdeb6b22ab75f3ab4908ce6198a Mon Sep 17 00:00:00 2001 From: Djangoliv Date: Tue, 5 May 2026 15:59:59 +0200 Subject: [PATCH 2/2] update tljh-repo2docker --- ansible/vars/default.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/vars/default.yml b/ansible/vars/default.yml index 027bee7..46a19a0 100644 --- a/ansible/vars/default.yml +++ b/ansible/vars/default.yml @@ -1,7 +1,7 @@ --- tljh_plasma: git+https://github.com/plasmabio/plasma@master#"egg=tljh-plasma&subdirectory=tljh-plasma" -tljh_repo2docker: tljh_repo2docker==3.0.9 +tljh_repo2docker: tljh_repo2docker==3.0.11 tljh_installer_dest: /srv/tljh-installer.py tljh_prefix: /opt/tljh tljh_installer_url: https://tljh.jupyter.org/bootstrap.py