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;
}