From d4b71c519ce7f845dbc843a1a5a8ca501c94c59b Mon Sep 17 00:00:00 2001 From: Andreas Reinhold / reini Date: Mon, 14 Sep 2026 14:34:24 +0200 Subject: [PATCH] Keep the tooltip bubble's border style from the reset Plan step 36. border-width: 0 rather than border: 0, so the bubble's computed border matches what Tailwind's border-0 drew. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01Qwx5USif3wFFmxtHg5U1g9 --- resources/css/components/tooltip.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/css/components/tooltip.css b/resources/css/components/tooltip.css index 5c00df6a..31398847 100644 --- a/resources/css/components/tooltip.css +++ b/resources/css/components/tooltip.css @@ -25,7 +25,7 @@ margin: 0; max-inline-size: 200px; overflow: visible; - border: 0; + border-width: 0; border-radius: var(--md-sys-shape-corner-xs); padding-block: var(--md-sys-measurement-space50); padding-inline: var(--md-sys-measurement-space100);