diff --git a/neode-ui/src/style.css b/neode-ui/src/style.css index 9cad85b2..7c94ba7d 100644 --- a/neode-ui/src/style.css +++ b/neode-ui/src/style.css @@ -123,7 +123,7 @@ input[type="radio"]:active + * { /* Mode switcher - sidebar toggle */ .mode-switcher { - display: flex; + display: inline-flex; gap: 2px; padding: 3px; border-radius: 0.5rem; @@ -132,9 +132,10 @@ input[type="radio"]:active + * { } .mode-switcher-btn { - flex: 1; - padding: 0.375rem 0.5rem; + flex: none; + padding: 0.375rem 0.75rem; border-radius: 0.375rem; + white-space: nowrap; font-size: 0.75rem; font-weight: 500; color: rgba(255, 255, 255, 0.45); @@ -214,15 +215,15 @@ input[type="radio"]:active + * { } .chat-mode-pill { + display: none; position: absolute; - top: calc(env(safe-area-inset-top, 0px) + 2.25rem); - right: calc(env(safe-area-inset-right, 0px) + 1.25rem); + top: 2.25rem; + right: 1.25rem; z-index: 10; } @media (min-width: 768px) { .chat-mode-pill { - top: 2.25rem; - right: 1.25rem; + display: flex; } } @@ -237,7 +238,7 @@ input[type="radio"]:active + * { /* On mobile, pad iframe so AIUI content ends above the tab bar */ @media (max-width: 767px) { .chat-iframe-mobile { - padding-bottom: calc(var(--mobile-tab-bar-height, 72px) + 52px); + padding-bottom: var(--mobile-tab-bar-height, 72px); } } @@ -380,6 +381,28 @@ input[type="radio"]:active + * { background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent); } + /* Tier badges for marketplace */ + .tier-badge { + font-size: 0.625rem; + padding: 1px 6px; + border-radius: 9999px; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.05em; + vertical-align: middle; + margin-left: 6px; + } + + .tier-badge-core { + background: rgba(251, 146, 60, 0.2); + color: #fb923c; + } + + .tier-badge-recommended { + background: rgba(59, 130, 246, 0.2); + color: #60a5fa; + } + .glass-button-sm { padding-block: 0.375rem; padding-inline: 0.75rem; diff --git a/neode-ui/src/views/Marketplace.vue b/neode-ui/src/views/Marketplace.vue index 0e7cbd71..08ea6544 100644 --- a/neode-ui/src/views/Marketplace.vue +++ b/neode-ui/src/views/Marketplace.vue @@ -150,7 +150,14 @@
{{ app.version ? `v${app.version}` : 'latest' }}
by {{ app.author }}