From a845d9f6143caeba8354f6b4077f7c49ad162f58 Mon Sep 17 00:00:00 2001 From: Jesse Washburn <142361664+jessewashburn@users.noreply.github.com> Date: Mon, 20 Oct 2025 13:46:14 -0400 Subject: [PATCH 1/2] initial draft of try it now button connected with open web ui --- index.html | 179 ++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 157 insertions(+), 22 deletions(-) diff --git a/index.html b/index.html index e37d77a..f0b8d93 100644 --- a/index.html +++ b/index.html @@ -79,6 +79,44 @@ #branchSelect option[value="__toggle_users__"]:hover { background: rgba(90, 209, 255, 0.1); } + + /* Toast notification styles */ + .toast { + position: fixed; + bottom: 20px; + right: 20px; + background: var(--card); + border: 1px solid var(--accent); + border-radius: 10px; + padding: 12px 16px; + color: var(--text); + font-size: 14px; + z-index: 1000; + max-width: 400px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); + transform: translateX(450px); + transition: transform 0.3s ease-in-out; + } + + .toast.show { + transform: translateX(0); + } + + .toast .toast-close { + position: absolute; + top: 8px; + right: 8px; + background: none; + border: none; + color: var(--muted); + cursor: pointer; + font-size: 16px; + padding: 2px; + } + + .toast .toast-close:hover { + color: var(--text); + } @@ -120,6 +158,7 @@