From 4cdc90ed61f1b97f4831ef0fc35ede11456436c3 Mon Sep 17 00:00:00 2001 From: Soam Desai Date: Wed, 9 Sep 2026 22:36:49 -0700 Subject: [PATCH] docs(ui): hide the duplicate assistant chat entry points MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docs 3.0 QA: 'Remove the chat window, since we already have it in the header.' On the hosted site the assistant renders a sticky 'Ask a question' bar at the bottom of every docs page (div[data-assistant-bar]); local mint dev renders a draggable floating launcher instead. Hide both via CSS (neither has a docs.json toggle). The assistant stays reachable from the header (Ask Assistant / ⌘I), which still opens the docked panel. --- tailwind.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tailwind.css b/tailwind.css index d3bd1ae..724d3e7 100644 --- a/tailwind.css +++ b/tailwind.css @@ -78,6 +78,20 @@ display: none !important; } + /* ------------------------------------------------------------------ */ + /* Assistant chat — remove the duplicate chat entry points; the */ + /* assistant stays reachable from the header (Ask Assistant / ⌘I). */ + /* The hosted site renders a sticky "Ask a question" bar at the bottom */ + /* of every docs page; local `mint dev` renders a draggable floating */ + /* launcher instead. Hide both. */ + /* ------------------------------------------------------------------ */ + div[data-assistant-bar] { + display: none !important; + } + body > div.z-999.cursor-grab.touch-none[role="status"] { + display: none !important; + } + /* Landing page — product cards (borderless icon-tile rows per Docs 3.0) */ a.product-card { display: flex;