From 52545548ac9d28a65b5dc8be30a4a8e6815ae687 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 14:53:53 +0000 Subject: [PATCH 1/3] Initial plan From 25cd7dc1b9ec2a2e8256a428c05d1764fa8bfaa2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:01:56 +0000 Subject: [PATCH 2/3] initial plan Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/smoke-claude.lock.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index a339fc73b7..bceba229df 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -2629,6 +2629,8 @@ jobs: /// // Auto-generated safe-output script handler: post-slack-message + const { sanitizeContent } = require("./sanitize_content.cjs"); + /** @type {import('./types/safe-output-script').SafeOutputScriptMain} */ async function main(config = {}) { const { channel, message } = config; From f75f81d6d07c15dce0bbc3de0c97593fa8137f94 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:08:37 +0000 Subject: [PATCH 3/3] fix: override default Marp theme table row backgrounds for dark slide theme The default Marp theme applies light background colors (via CSS variables with color-scheme:light) to table rows. In the dark gh-aw theme, this caused table body rows to have light backgrounds, making the light-colored text (#e6edf3) nearly invisible due to poor contrast. Fix: Add explicit overrides to reset table row backgrounds to transparent (odd rows) and a subtle semi-transparent white (even rows) for visual distinction. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/slides/gh-aw-theme.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/slides/gh-aw-theme.css b/docs/slides/gh-aw-theme.css index 331f2d2f5a..3e9b9ee421 100644 --- a/docs/slides/gh-aw-theme.css +++ b/docs/slides/gh-aw-theme.css @@ -211,6 +211,15 @@ section td { color: #e6edf3; } +section table tr { + background-color: transparent; + border-top: none; +} + +section table tr:nth-child(2n) { + background-color: rgba(255, 255, 255, 0.06); +} + section tr:last-child td { border-bottom: none; }