From 1f91919dca029e39c8e65cbe8370d450a7534224 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Jun 2026 08:11:59 +0000 Subject: [PATCH 1/2] fix(overlay): add background to log overlay and use monospace font Fixes two issues from #8089: - Add background-color to overlay-log so the container is visible before text starts appearing - Use monospace font in overlay iframe content for better log readability - Bump CSS cache version to v12 --- php/public/style.css | 2 ++ php/src/Controller/DockerController.php | 2 +- php/templates/layout.twig | 2 +- php/templates/log.twig | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/php/public/style.css b/php/public/style.css index a3c24c38..3a4801fd 100644 --- a/php/public/style.css +++ b/php/public/style.css @@ -487,10 +487,12 @@ input[type="checkbox"]:disabled:not(:checked) + label { height: min(400px, calc(100vh - 14rem)); border-radius: var(--border-radius-large); border: solid thin rgb(192, 192, 192); + background-color: var(--color-main-background); } .overlay-iframe { padding: 1rem; + font-family: monospace; } .loader { diff --git a/php/src/Controller/DockerController.php b/php/src/Controller/DockerController.php index b6cb7c24..1e50278a 100644 --- a/php/src/Controller/DockerController.php +++ b/php/src/Controller/DockerController.php @@ -418,7 +418,7 @@ readonly class DockerController {
- + diff --git a/php/templates/layout.twig b/php/templates/layout.twig index 469afa40..e79a09dd 100644 --- a/php/templates/layout.twig +++ b/php/templates/layout.twig @@ -2,7 +2,7 @@