mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-24 21:48:36 +02:00
- 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>
19 lines
453 B
HTML
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>
|