From 24c771d1432ef84f77a47e67f7176770d5e34b11 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Mon, 23 Feb 2026 08:32:37 +0700 Subject: [PATCH] pilot: show pipette icon without context label --- frontend/app.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/app.vue b/frontend/app.vue index 73c1f43..faf9952 100644 --- a/frontend/app.vue +++ b/frontend/app.vue @@ -4503,13 +4503,13 @@ async function decideFeedCard(card: FeedCard, decision: "accepted" | "rejected") class="context-pipette-trigger" :class="contextPickerEnabled ? 'context-pipette-active' : ''" :disabled="pilotTranscribing || pilotSending" + aria-label="Контекстная пипетка" :title="contextPickerEnabled ? 'Выключить пипетку' : 'Включить пипетку контекста'" @click="toggleContextPicker" > - Контекст
@@ -6417,14 +6417,14 @@ async function decideFeedCard(card: FeedCard, decision: "accepted" | "rejected") .context-pipette-trigger { display: inline-flex; align-items: center; - gap: 6px; - border-radius: 999px; + justify-content: center; + width: 26px; + height: 26px; + border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); color: rgba(245, 247, 255, 0.94); - padding: 4px 10px; - font-size: 11px; - line-height: 1; + padding: 0; transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease; }