Skip to content

Commit d2f8e93

Browse files
committed
feat: Update model logo styles for improved visibility and interaction
1 parent 1a90aa7 commit d2f8e93

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1494,7 +1494,6 @@ Your goal: deliver precise, production-grade patches with the smallest necessary
14941494
const parts = [];
14951495
// === AI Model Template Logic ===
14961496
if (S.model === 'gpt') {
1497-
parts.push('# <span class="material-symbols-outlined">smart_toy</span> PROJECT CONTEXT FOR GPT-4\n');
14981497
parts.push('='.repeat(80) + '\n\n');
14991498

15001499
parts.push('## 📋 METADATA\n');
@@ -1683,7 +1682,6 @@ Your goal: deliver precise, production-grade patches with the smallest necessary
16831682

16841683
// Add model-specific headers for download
16851684
if (S.model === 'gpt') {
1686-
parts.push('# <span class="material-symbols-outlined">smart_toy</span> PROJECT CONTEXT FOR GPT-4\n');
16871685
parts.push('='.repeat(80) + '\n\n');
16881686

16891687
parts.push('## 📋 METADATA\n');

style.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,16 @@
3838
opacity: 0.85;
3939
transition: transform 0.12s ease, opacity 0.12s ease, box-shadow 0.12s ease;
4040
border: 1px solid transparent;
41-
background: rgba(255,255,255,0.02);
41+
background: rgba(164, 38, 38, 0.02);
4242
}
4343
.model-logo:hover {
4444
transform: translateY(-2px) scale(1.02);
4545
opacity: 1;
4646
}
4747
.model-logo.selected {
48-
box-shadow: 0 0 0 3px rgba(16,185,129,0.08);
49-
border-color: rgba(16,185,129,0.18);
48+
49+
box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
50+
border-color: rgba(105,128,197,0.18);
5051
opacity: 1;
5152
}
5253
/* Only sidebar main action icons (Select Directory, Create Context) black and small */

0 commit comments

Comments
 (0)