Files
aryx/src/renderer/quickprompt.html
T
David KayaandCopilot efcee8a621 fix: group models by provider and eliminate popup background rectangle
- Rewrite ModelSelector to group models by AI provider (OpenAI,
  Anthropic, Google) using providerMeta and ProviderIcon instead of
  grouping by tier; show tier as compact badge per model row
- Remove all box-shadow from qp-panel and border state variants;
  on Windows transparent BrowserWindows, shadows paint on the
  transparent canvas creating a visible dark rectangle behind the
  rounded panel
- Add transparent background to html element in quickprompt.html
  and CSS override via :has(body[data-quickprompt]) to ensure no
  ancestor paints a visible background

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-13 12:26:02 +02:00

19 lines
453 B
HTML

<!doctype html>
<html lang="en" style="background: transparent;">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Aryx Quick Prompt</title>
</head>
<body data-quickprompt style="margin: 0; background: transparent; overflow: hidden;">
<div id="root"></div>
<script
type="module"
src="./quickprompt.tsx"
></script>
</body>
</html>