ui-sniper 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +292 -135
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +292 -135
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -9
package/dist/index.mjs
CHANGED
|
@@ -7825,8 +7825,6 @@ async function captureDomRegion(regionX, regionY, regionW, regionH, strokes, pad
|
|
|
7825
7825
|
const outH = Math.round(captureH * outScale);
|
|
7826
7826
|
if (outW < 1 || outH < 1) return null;
|
|
7827
7827
|
const uiSniperRoot = document.querySelector("[data-ui-sniper-root]");
|
|
7828
|
-
const prevVisibility = uiSniperRoot?.style.visibility;
|
|
7829
|
-
if (uiSniperRoot) uiSniperRoot.style.visibility = "hidden";
|
|
7830
7828
|
let restorePII;
|
|
7831
7829
|
if (piiConfig?.enabled) {
|
|
7832
7830
|
const { applyDOMRedaction: applyDOMRedaction2 } = await Promise.resolve().then(() => (init_pii_redaction(), pii_redaction_exports));
|
|
@@ -7888,13 +7886,28 @@ async function captureDomRegion(regionX, regionY, regionW, regionH, strokes, pad
|
|
|
7888
7886
|
if (strokes && strokes.length > 0) {
|
|
7889
7887
|
drawStrokesOnCanvas(ctx, strokes, captureX, captureY, outScale);
|
|
7890
7888
|
}
|
|
7889
|
+
const borderX = (regionX - captureX) * outScale;
|
|
7890
|
+
const borderY = (regionY - captureY) * outScale;
|
|
7891
|
+
const borderW = regionW * outScale;
|
|
7892
|
+
const borderH = regionH * outScale;
|
|
7893
|
+
ctx.fillStyle = "rgba(0, 0, 0, 0.4)";
|
|
7894
|
+
ctx.fillRect(0, 0, outW, outH);
|
|
7895
|
+
ctx.clearRect(borderX, borderY, borderW, borderH);
|
|
7896
|
+
ctx.save();
|
|
7897
|
+
ctx.strokeStyle = "#8B5CF6";
|
|
7898
|
+
ctx.lineWidth = Math.max(3, 4 * outScale);
|
|
7899
|
+
ctx.strokeRect(borderX, borderY, borderW, borderH);
|
|
7900
|
+
ctx.shadowColor = "rgba(139, 92, 246, 0.8)";
|
|
7901
|
+
ctx.shadowBlur = Math.max(10, 20 * outScale);
|
|
7902
|
+
ctx.strokeRect(borderX, borderY, borderW, borderH);
|
|
7903
|
+
ctx.restore();
|
|
7891
7904
|
return canvas.toDataURL("image/jpeg", quality);
|
|
7892
7905
|
} catch (err) {
|
|
7893
7906
|
console.warn("[UI Sniper] DOM capture failed:", err);
|
|
7894
7907
|
return null;
|
|
7895
7908
|
} finally {
|
|
7896
7909
|
restorePII?.();
|
|
7897
|
-
if (uiSniperRoot) uiSniperRoot.style.visibility =
|
|
7910
|
+
if (uiSniperRoot) uiSniperRoot.style.visibility = "";
|
|
7898
7911
|
}
|
|
7899
7912
|
}
|
|
7900
7913
|
function drawStrokesOnCanvas(ctx, strokes, originX, originY, scale) {
|
|
@@ -8039,8 +8052,8 @@ function useUISniper() {
|
|
|
8039
8052
|
import { useState as useState7, useCallback as useCallback5, useEffect as useEffect7 } from "react";
|
|
8040
8053
|
|
|
8041
8054
|
// src/components/review-panel/styles.module.scss
|
|
8042
|
-
var css6 = '@keyframes styles-module__reviewPanelIn___1sNcb {\n from {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n to {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n}\n@keyframes styles-module__reviewPanelOut___7C-Bb {\n from {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n to {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n}\n@keyframes styles-module__cardFlipIn___XU-cU {\n from {\n opacity: 0;\n transform: translateY(6px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n@keyframes styles-module__reviewPulse___rIvyF {\n 0%, 100% {\n transform: scale(1);\n }\n 50% {\n transform: scale(1.15);\n }\n}\n.styles-module__reviewPanel___z4gdL {\n position: fixed;\n bottom: 80px;\n right: 1.25rem;\n width: 360px;\n max-height: calc(100vh - 120px);\n background: #141414;\n border-radius: 20px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);\n display: flex;\n flex-direction: column;\n overflow: hidden;\n z-index: 99999;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n animation: styles-module__reviewPanelIn___1sNcb 0.28s cubic-bezier(0.19, 1, 0.22, 1) forwards;\n}\n.styles-module__reviewPanel___z4gdL.styles-module__exiting___l4pmU {\n animation: styles-module__reviewPanelOut___7C-Bb 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewPanel___z4gdL {\n background: #ffffff;\n border-color: rgba(0, 0, 0, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);\n}\n\n.styles-module__panelHeader___r8Uv9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 14px 16px 12px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n flex-shrink: 0;\n}\n[data-ui-sniper-theme=light] .styles-module__panelHeader___r8Uv9 {\n border-bottom-color: rgba(0, 0, 0, 0.07);\n}\n\n.styles-module__panelTitle___8rA2H {\n display: flex;\n align-items: center;\n gap: 8px;\n color: rgba(255, 255, 255, 0.9);\n font-size: 13px;\n font-weight: 600;\n letter-spacing: -0.01em;\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitle___8rA2H {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__panelTitleIcon___IODxi {\n width: 22px;\n height: 22px;\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.08);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitleIcon___IODxi {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.6);\n}\n\n.styles-module__panelCount___lV7Px {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n background: rgba(255, 255, 255, 0.06);\n padding: 2px 8px;\n border-radius: 100px;\n margin-left: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__panelCount___lV7Px {\n color: rgba(0, 0, 0, 0.4);\n background: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__panelHeaderActions___CcGKX {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n.styles-module__panelIconBtn___GsW4v {\n width: 28px;\n height: 28px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__modeToggle___CYve- {\n display: flex;\n align-items: center;\n gap: 2px;\n padding: 10px 16px 2px;\n flex-shrink: 0;\n}\n\n.styles-module__modeBtn___Awpty {\n flex: 1;\n height: 28px;\n border: none;\n border-radius: 8px;\n background: transparent;\n color: rgba(255, 255, 255, 0.35);\n font-size: 11.5px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n letter-spacing: 0.01em;\n}\n.styles-module__modeBtn___Awpty:hover {\n color: rgba(255, 255, 255, 0.6);\n background: rgba(255, 255, 255, 0.04);\n}\n.styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty {\n color: rgba(0, 0, 0, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty:hover {\n color: rgba(0, 0, 0, 0.6);\n background: rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__emptyState___qSyQN {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 40px 24px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__emptyIcon___OBMKU {\n width: 40px;\n height: 40px;\n border-radius: 12px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.2);\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__emptyIcon___OBMKU {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.2);\n}\n\n.styles-module__emptyText___u5Rr1 {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__emptyText___u5Rr1 {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__emptySubtext___loWrs {\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__emptySubtext___loWrs {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardList___UMVAa {\n flex: 1;\n overflow-y: auto;\n padding: 10px 12px 12px;\n display: flex;\n flex-direction: column;\n gap: 8px;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.12) transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar {\n width: 4px;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-track {\n background: transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(255, 255, 255, 0.12);\n border-radius: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa {\n scrollbar-color: rgba(0, 0, 0, 0.1) transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(0, 0, 0, 0.1);\n}\n\n.styles-module__reviewCard___LEbPO {\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 12px;\n padding: 12px;\n cursor: pointer;\n transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;\n animation: styles-module__cardFlipIn___XU-cU 0.2s ease-out both;\n}\n.styles-module__reviewCard___LEbPO:hover {\n background: rgba(255, 255, 255, 0.07);\n border-color: rgba(255, 255, 255, 0.12);\n}\n.styles-module__reviewCard___LEbPO:active {\n transform: scale(0.985);\n}\n.styles-module__reviewCard___LEbPO.styles-module__reviewed___aXsqh {\n opacity: 0.45;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.07);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO:hover {\n background: rgba(0, 0, 0, 0.04);\n border-color: rgba(0, 0, 0, 0.12);\n}\n\n.styles-module__cardTop___FRDLH {\n display: flex;\n align-items: flex-start;\n gap: 10px;\n}\n\n.styles-module__cardBadge___EZIAJ {\n flex-shrink: 0;\n width: 22px;\n height: 22px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 10px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 1px;\n}\n\n.styles-module__cardContent___LYk3n {\n flex: 1;\n min-width: 0;\n}\n\n.styles-module__cardElement___XJpXk {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n margin-bottom: 3px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardElement___XJpXk {\n color: rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__cardComment___w0trE {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n line-height: 1.45;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__cardComment___w0trE {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__cardScreenshot___rv0u5 {\n margin-top: 10px;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__cardScreenshot___rv0u5 img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 120px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__cardScreenshot___rv0u5 {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__cardSelectedText___8GX1g {\n margin-top: 8px;\n padding: 6px 8px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 6px 6px 0;\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardSelectedText___8GX1g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__cardActions___Macsz {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 10px;\n padding-top: 8px;\n border-top: 1px solid rgba(255, 255, 255, 0.06);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActions___Macsz {\n border-top-color: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__cardMeta___9ptB7 {\n font-size: 10.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cardMeta___9ptB7 {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardActionBtns___dMPFQ {\n display: flex;\n gap: 4px;\n}\n\n.styles-module__cardActionBtn___2sVfv {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.3);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(255, 255, 255, 0.08);\n color: rgba(255, 255, 255, 0.75);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: var(--ui-sniper-color-green, #22c55e);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: #16a34a;\n background: rgba(22, 163, 74, 0.12);\n}\n\n.styles-module__flashcardArea___mDFIj {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 12px 16px 16px;\n gap: 12px;\n overflow: hidden;\n}\n\n.styles-module__flashcard___Cczc5 {\n width: 100%;\n flex: 1;\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.09);\n border-radius: 16px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n animation: styles-module__cardFlipIn___XU-cU 0.22s ease-out both;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcard___Cczc5 {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardHeader___jQA9j {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 12px 14px 0;\n}\n\n.styles-module__flashcardBadge___oxj9N {\n width: 26px;\n height: 26px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 11px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardElement___LRiIM {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardElement___LRiIM {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__flashcardBody___7OpWs {\n flex: 1;\n padding: 12px 14px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n overflow-y: auto;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.1) transparent;\n}\n\n.styles-module__flashcardComment___V9CyW {\n font-size: 15px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.9);\n line-height: 1.55;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardComment___V9CyW {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__flashcardScreenshot___TA8ev {\n border-radius: 10px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__flashcardScreenshot___TA8ev img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 160px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardScreenshot___TA8ev {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardSelectedText___qTc-g {\n padding: 8px 10px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 8px 8px 0;\n font-size: 12px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n line-height: 1.5;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardSelectedText___qTc-g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__flashcardNav___VJss5 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n flex-shrink: 0;\n padding: 0 2px;\n}\n\n.styles-module__flashcardNavBtn___6ETeG {\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n border-color: rgba(255, 255, 255, 0.18);\n}\n.styles-module__flashcardNavBtn___6ETeG:active:not(:disabled) {\n transform: scale(0.9);\n}\n.styles-module__flashcardNavBtn___6ETeG:disabled {\n opacity: 0.25;\n cursor: not-allowed;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__flashcardProgress___Sfspj {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__progressDots___Pf-WJ {\n display: flex;\n gap: 5px;\n}\n\n.styles-module__progressDot___Jpqcs {\n width: 6px;\n height: 6px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.15);\n transition: background 0.2s ease, transform 0.2s ease;\n}\n.styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n transform: scale(1.2);\n}\n.styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: var(--ui-sniper-color-green, #22c55e);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs {\n background: rgba(0, 0, 0, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: #16a34a;\n}\n\n.styles-module__progressText___ydmHE {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.3);\n min-width: 36px;\n text-align: center;\n}\n[data-ui-sniper-theme=light] .styles-module__progressText___ydmHE {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.styles-module__flashcardBottomActions___7C6rZ {\n display: flex;\n gap: 6px;\n width: 100%;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardActionBtn___-2Zat {\n flex: 1;\n height: 34px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n border-radius: 10px;\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 5px;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;\n}\n.styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(255, 255, 255, 0.09);\n color: rgba(255, 255, 255, 0.9);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: var(--ui-sniper-color-green, #22c55e);\n border-color: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 25%, transparent);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 8%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx:hover {\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 16%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__jumpBtn___EzLcP {\n max-width: 40px;\n flex: none;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat {\n border-color: rgba(0, 0, 0, 0.08);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: #16a34a;\n border-color: rgba(22, 163, 74, 0.2);\n background: rgba(22, 163, 74, 0.07);\n}\n\n.styles-module__reviewComplete___MCWa9 {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 28px 20px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__reviewCompleteIcon___unw0x {\n width: 48px;\n height: 48px;\n border-radius: 50%;\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n color: var(--ui-sniper-color-green, #22c55e);\n display: flex;\n align-items: center;\n justify-content: center;\n animation: styles-module__reviewPulse___rIvyF 0.6s ease-out both;\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteIcon___unw0x {\n background: rgba(22, 163, 74, 0.1);\n color: #16a34a;\n}\n\n.styles-module__reviewCompleteTitle___MeHeA {\n font-size: 14px;\n font-weight: 600;\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteTitle___MeHeA {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__reviewCompleteSubtitle___9fJNK {\n font-size: 12px;\n color: rgba(255, 255, 255, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteSubtitle___9fJNK {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__resetReviewBtn___06LuY {\n margin-top: 8px;\n height: 30px;\n padding: 0 14px;\n border-radius: 8px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.05);\n color: rgba(255, 255, 255, 0.5);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.04);\n color: rgba(0, 0, 0, 0.45);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.8);\n}';
|
|
8043
|
-
var classNames6 = { "reviewPanel": "styles-module__reviewPanel___z4gdL", "reviewPanelIn": "styles-module__reviewPanelIn___1sNcb", "exiting": "styles-module__exiting___l4pmU", "reviewPanelOut": "styles-module__reviewPanelOut___7C-Bb", "panelHeader": "styles-module__panelHeader___r8Uv9", "panelTitle": "styles-module__panelTitle___8rA2H", "panelTitleIcon": "styles-module__panelTitleIcon___IODxi", "panelCount": "styles-module__panelCount___lV7Px", "panelHeaderActions": "styles-module__panelHeaderActions___CcGKX", "panelIconBtn": "styles-module__panelIconBtn___GsW4v", "modeToggle": "styles-module__modeToggle___CYve-", "modeBtn": "styles-module__modeBtn___Awpty", "active": "styles-module__active___gLEBm", "emptyState": "styles-module__emptyState___qSyQN", "emptyIcon": "styles-module__emptyIcon___OBMKU", "emptyText": "styles-module__emptyText___u5Rr1", "emptySubtext": "styles-module__emptySubtext___loWrs", "cardList": "styles-module__cardList___UMVAa", "reviewCard": "styles-module__reviewCard___LEbPO", "cardFlipIn": "styles-module__cardFlipIn___XU-cU", "reviewed": "styles-module__reviewed___aXsqh", "cardTop": "styles-module__cardTop___FRDLH", "cardBadge": "styles-module__cardBadge___EZIAJ", "cardContent": "styles-module__cardContent___LYk3n", "cardElement": "styles-module__cardElement___XJpXk", "cardComment": "styles-module__cardComment___w0trE", "cardScreenshot": "styles-module__cardScreenshot___rv0u5", "cardSelectedText": "styles-module__cardSelectedText___8GX1g", "cardActions": "styles-module__cardActions___Macsz", "cardMeta": "styles-module__cardMeta___9ptB7", "cardActionBtns": "styles-module__cardActionBtns___dMPFQ", "cardActionBtn": "styles-module__cardActionBtn___2sVfv", "reviewedBtn": "styles-module__reviewedBtn___0ZT6J", "flashcardArea": "styles-module__flashcardArea___mDFIj", "flashcard": "styles-module__flashcard___Cczc5", "flashcardHeader": "styles-module__flashcardHeader___jQA9j", "flashcardBadge": "styles-module__flashcardBadge___oxj9N", "flashcardElement": "styles-module__flashcardElement___LRiIM", "flashcardBody": "styles-module__flashcardBody___7OpWs", "flashcardComment": "styles-module__flashcardComment___V9CyW", "flashcardScreenshot": "styles-module__flashcardScreenshot___TA8ev", "flashcardSelectedText": "styles-module__flashcardSelectedText___qTc-g", "flashcardNav": "styles-module__flashcardNav___VJss5", "flashcardNavBtn": "styles-module__flashcardNavBtn___6ETeG", "flashcardProgress": "styles-module__flashcardProgress___Sfspj", "progressDots": "styles-module__progressDots___Pf-WJ", "progressDot": "styles-module__progressDot___Jpqcs", "progressText": "styles-module__progressText___ydmHE", "flashcardBottomActions": "styles-module__flashcardBottomActions___7C6rZ", "flashcardActionBtn": "styles-module__flashcardActionBtn___-2Zat", "
|
|
8055
|
+
var css6 = '@keyframes styles-module__reviewPanelIn___1sNcb {\n from {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n to {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n}\n@keyframes styles-module__reviewPanelOut___7C-Bb {\n from {\n opacity: 1;\n transform: translateY(0) scale(1);\n }\n to {\n opacity: 0;\n transform: translateY(12px) scale(0.97);\n }\n}\n@keyframes styles-module__cardFlipIn___XU-cU {\n from {\n opacity: 0;\n transform: translateY(6px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n@keyframes styles-module__reviewPulse___rIvyF {\n 0%, 100% {\n transform: scale(1);\n }\n 50% {\n transform: scale(1.15);\n }\n}\n.styles-module__reviewPanel___z4gdL {\n position: fixed;\n bottom: 80px;\n right: 1.25rem;\n width: 360px;\n max-height: calc(100vh - 120px);\n background: #141414;\n border-radius: 20px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);\n display: flex;\n flex-direction: column;\n overflow: hidden;\n z-index: 99999;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n animation: styles-module__reviewPanelIn___1sNcb 0.28s cubic-bezier(0.19, 1, 0.22, 1) forwards;\n}\n.styles-module__reviewPanel___z4gdL.styles-module__exiting___l4pmU {\n animation: styles-module__reviewPanelOut___7C-Bb 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewPanel___z4gdL {\n background: #ffffff;\n border-color: rgba(0, 0, 0, 0.08);\n box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);\n}\n\n.styles-module__panelHeader___r8Uv9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 14px 16px 12px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n flex-shrink: 0;\n}\n[data-ui-sniper-theme=light] .styles-module__panelHeader___r8Uv9 {\n border-bottom-color: rgba(0, 0, 0, 0.07);\n}\n\n.styles-module__panelTitle___8rA2H {\n display: flex;\n align-items: center;\n gap: 8px;\n color: rgba(255, 255, 255, 0.9);\n font-size: 13px;\n font-weight: 600;\n letter-spacing: -0.01em;\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitle___8rA2H {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__panelTitleIcon___IODxi {\n width: 22px;\n height: 22px;\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.08);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__panelTitleIcon___IODxi {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.6);\n}\n\n.styles-module__panelCount___lV7Px {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n background: rgba(255, 255, 255, 0.06);\n padding: 2px 8px;\n border-radius: 100px;\n margin-left: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__panelCount___lV7Px {\n color: rgba(0, 0, 0, 0.4);\n background: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__panelHeaderActions___CcGKX {\n display: flex;\n align-items: center;\n gap: 4px;\n}\n\n.styles-module__panelIconBtn___GsW4v {\n width: 28px;\n height: 28px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__panelIconBtn___GsW4v:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__modeToggle___CYve- {\n display: flex;\n align-items: center;\n gap: 2px;\n padding: 10px 16px 2px;\n flex-shrink: 0;\n}\n\n.styles-module__modeBtn___Awpty {\n flex: 1;\n height: 28px;\n border: none;\n border-radius: 8px;\n background: transparent;\n color: rgba(255, 255, 255, 0.35);\n font-size: 11.5px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n letter-spacing: 0.01em;\n}\n.styles-module__modeBtn___Awpty:hover {\n color: rgba(255, 255, 255, 0.6);\n background: rgba(255, 255, 255, 0.04);\n}\n.styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty {\n color: rgba(0, 0, 0, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty:hover {\n color: rgba(0, 0, 0, 0.6);\n background: rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__modeBtn___Awpty.styles-module__active___gLEBm {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__emptyState___qSyQN {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 40px 24px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__emptyIcon___OBMKU {\n width: 40px;\n height: 40px;\n border-radius: 12px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n color: rgba(255, 255, 255, 0.2);\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__emptyIcon___OBMKU {\n background: rgba(0, 0, 0, 0.05);\n color: rgba(0, 0, 0, 0.2);\n}\n\n.styles-module__emptyText___u5Rr1 {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n}\n[data-ui-sniper-theme=light] .styles-module__emptyText___u5Rr1 {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__emptySubtext___loWrs {\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__emptySubtext___loWrs {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardList___UMVAa {\n flex: 1;\n overflow-y: auto;\n padding: 10px 12px 12px;\n display: flex;\n flex-direction: column;\n gap: 8px;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.12) transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar {\n width: 4px;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-track {\n background: transparent;\n}\n.styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(255, 255, 255, 0.12);\n border-radius: 2px;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa {\n scrollbar-color: rgba(0, 0, 0, 0.1) transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__cardList___UMVAa::-webkit-scrollbar-thumb {\n background: rgba(0, 0, 0, 0.1);\n}\n\n.styles-module__reviewCard___LEbPO {\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 12px;\n padding: 12px;\n cursor: pointer;\n flex-shrink: 0;\n transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;\n animation: styles-module__cardFlipIn___XU-cU 0.2s ease-out both;\n}\n.styles-module__reviewCard___LEbPO:hover {\n background: rgba(255, 255, 255, 0.07);\n border-color: rgba(255, 255, 255, 0.12);\n}\n.styles-module__reviewCard___LEbPO:active {\n transform: scale(0.985);\n}\n.styles-module__reviewCard___LEbPO.styles-module__reviewed___aXsqh {\n opacity: 0.45;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.07);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCard___LEbPO:hover {\n background: rgba(0, 0, 0, 0.04);\n border-color: rgba(0, 0, 0, 0.12);\n}\n\n.styles-module__cardTop___FRDLH {\n display: flex;\n align-items: flex-start;\n gap: 10px;\n}\n\n.styles-module__cardBadge___EZIAJ {\n flex-shrink: 0;\n width: 22px;\n height: 22px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 10px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 1px;\n}\n\n.styles-module__cardContent___LYk3n {\n flex: 1;\n min-width: 0;\n}\n\n.styles-module__cardElement___XJpXk {\n font-size: 11px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n margin-bottom: 3px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardElement___XJpXk {\n color: rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__cardComment___w0trE {\n font-size: 13px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n line-height: 1.45;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__cardComment___w0trE {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__cardScreenshot___rv0u5 {\n margin-top: 10px;\n border-radius: 8px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__cardScreenshot___rv0u5 img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 120px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__cardScreenshot___rv0u5 {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__cardSelectedText___8GX1g {\n margin-top: 8px;\n padding: 6px 8px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 6px 6px 0;\n font-size: 11.5px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__cardSelectedText___8GX1g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__cardActions___Macsz {\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin-top: 10px;\n padding-top: 8px;\n border-top: 1px solid rgba(255, 255, 255, 0.06);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActions___Macsz {\n border-top-color: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__cardMeta___9ptB7 {\n font-size: 10.5px;\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cardMeta___9ptB7 {\n color: rgba(0, 0, 0, 0.25);\n}\n\n.styles-module__cardActionBtns___dMPFQ {\n display: flex;\n gap: 4px;\n}\n\n.styles-module__cardActionBtn___2sVfv {\n width: 24px;\n height: 24px;\n border-radius: 6px;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.3);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(255, 255, 255, 0.08);\n color: rgba(255, 255, 255, 0.75);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: var(--ui-sniper-color-green, #22c55e);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__deleteBtn___CoPUF:hover {\n color: var(--ui-sniper-color-red, #ef4444);\n background: color-mix(in srgb, var(--ui-sniper-color-red, #ef4444) 15%, transparent);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__copyBtn___oTyKC:hover {\n color: var(--ui-sniper-color-yellow, #eab308);\n background: color-mix(in srgb, var(--ui-sniper-color-yellow, #eab308) 15%, transparent);\n}\n.styles-module__cardActionBtn___2sVfv.styles-module__markDoneBtn___8KSUx:hover:not(.styles-module__reviewedBtn___0ZT6J) {\n color: var(--ui-sniper-color-green, #22c55e);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.7);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__reviewedBtn___0ZT6J {\n color: #16a34a;\n background: rgba(22, 163, 74, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__deleteBtn___CoPUF:hover {\n color: #dc2626;\n background: rgba(220, 38, 38, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__copyBtn___oTyKC:hover {\n color: #ca8a04;\n background: rgba(202, 138, 4, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__cardActionBtn___2sVfv.styles-module__markDoneBtn___8KSUx:hover:not(.styles-module__reviewedBtn___0ZT6J) {\n color: #16a34a;\n background: rgba(22, 163, 74, 0.12);\n}\n\n.styles-module__flashcardArea___mDFIj {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 12px 16px 16px;\n gap: 12px;\n overflow: hidden;\n}\n\n.styles-module__flashcard___Cczc5 {\n width: 100%;\n flex: 1;\n background: rgba(255, 255, 255, 0.04);\n border: 1px solid rgba(255, 255, 255, 0.09);\n border-radius: 16px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n animation: styles-module__cardFlipIn___XU-cU 0.22s ease-out both;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcard___Cczc5 {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardHeader___jQA9j {\n display: flex;\n align-items: center;\n gap: 8px;\n padding: 12px 14px 0;\n}\n\n.styles-module__flashcardBadge___oxj9N {\n width: 26px;\n height: 26px;\n border-radius: 50%;\n background: var(--ui-sniper-color-accent, #3c82f7);\n color: #fff;\n font-size: 11px;\n font-weight: 700;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardElement___LRiIM {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.35);\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardElement___LRiIM {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__flashcardBody___7OpWs {\n flex: 1;\n padding: 12px 14px;\n display: flex;\n flex-direction: column;\n gap: 10px;\n overflow-y: auto;\n scrollbar-width: thin;\n scrollbar-color: rgba(255, 255, 255, 0.1) transparent;\n}\n\n.styles-module__flashcardComment___V9CyW {\n font-size: 15px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.9);\n line-height: 1.55;\n word-break: break-word;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardComment___V9CyW {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__flashcardScreenshot___TA8ev {\n border-radius: 10px;\n overflow: hidden;\n border: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__flashcardScreenshot___TA8ev img {\n display: block;\n width: 100%;\n height: auto;\n max-height: 160px;\n object-fit: cover;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardScreenshot___TA8ev {\n border-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__flashcardSelectedText___qTc-g {\n padding: 8px 10px;\n background: rgba(255, 255, 255, 0.04);\n border-left: 2px solid rgba(255, 255, 255, 0.15);\n border-radius: 0 8px 8px 0;\n font-size: 12px;\n color: rgba(255, 255, 255, 0.45);\n font-style: italic;\n line-height: 1.5;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardSelectedText___qTc-g {\n background: rgba(0, 0, 0, 0.03);\n border-left-color: rgba(0, 0, 0, 0.15);\n color: rgba(0, 0, 0, 0.45);\n}\n\n.styles-module__flashcardNav___VJss5 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n flex-shrink: 0;\n padding: 0 2px;\n}\n\n.styles-module__flashcardNavBtn___6ETeG {\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.9);\n border-color: rgba(255, 255, 255, 0.18);\n}\n.styles-module__flashcardNavBtn___6ETeG:active:not(:disabled) {\n transform: scale(0.9);\n}\n.styles-module__flashcardNavBtn___6ETeG:disabled {\n opacity: 0.25;\n cursor: not-allowed;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardNavBtn___6ETeG:hover:not(:disabled) {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__flashcardProgress___Sfspj {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__progressDots___Pf-WJ {\n display: flex;\n gap: 5px;\n}\n\n.styles-module__progressDot___Jpqcs {\n width: 6px;\n height: 6px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.15);\n transition: background 0.2s ease, transform 0.2s ease;\n}\n.styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n transform: scale(1.2);\n}\n.styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: var(--ui-sniper-color-green, #22c55e);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs {\n background: rgba(0, 0, 0, 0.12);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__active___gLEBm {\n background: var(--ui-sniper-color-accent, #3c82f7);\n}\n[data-ui-sniper-theme=light] .styles-module__progressDot___Jpqcs.styles-module__reviewed___aXsqh {\n background: #16a34a;\n}\n\n.styles-module__progressText___ydmHE {\n font-size: 11.5px;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.3);\n min-width: 36px;\n text-align: center;\n}\n[data-ui-sniper-theme=light] .styles-module__progressText___ydmHE {\n color: rgba(0, 0, 0, 0.3);\n}\n\n.styles-module__flashcardBottomActions___7C6rZ {\n display: flex;\n gap: 6px;\n width: 100%;\n flex-shrink: 0;\n}\n\n.styles-module__flashcardActionBtn___-2Zat {\n flex: 1;\n height: 34px;\n border: 1px solid rgba(255, 255, 255, 0.08);\n border-radius: 10px;\n background: rgba(255, 255, 255, 0.04);\n color: rgba(255, 255, 255, 0.6);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 5px;\n transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;\n}\n.styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(255, 255, 255, 0.09);\n color: rgba(255, 255, 255, 0.9);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: var(--ui-sniper-color-green, #22c55e);\n border-color: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 25%, transparent);\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 8%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx:hover {\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 16%, transparent);\n}\n.styles-module__flashcardActionBtn___-2Zat.styles-module__jumpBtn___EzLcP {\n max-width: 40px;\n flex: none;\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat {\n border-color: rgba(0, 0, 0, 0.08);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat:hover {\n background: rgba(0, 0, 0, 0.07);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__flashcardActionBtn___-2Zat.styles-module__markDoneBtn___8KSUx {\n color: #16a34a;\n border-color: rgba(22, 163, 74, 0.2);\n background: rgba(22, 163, 74, 0.07);\n}\n\n.styles-module__reviewComplete___MCWa9 {\n flex: 1;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n padding: 28px 20px;\n gap: 10px;\n text-align: center;\n}\n\n.styles-module__reviewCompleteIcon___unw0x {\n width: 48px;\n height: 48px;\n border-radius: 50%;\n background: color-mix(in srgb, var(--ui-sniper-color-green, #22c55e) 15%, transparent);\n color: var(--ui-sniper-color-green, #22c55e);\n display: flex;\n align-items: center;\n justify-content: center;\n animation: styles-module__reviewPulse___rIvyF 0.6s ease-out both;\n margin-bottom: 4px;\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteIcon___unw0x {\n background: rgba(22, 163, 74, 0.1);\n color: #16a34a;\n}\n\n.styles-module__reviewCompleteTitle___MeHeA {\n font-size: 14px;\n font-weight: 600;\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteTitle___MeHeA {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__reviewCompleteSubtitle___9fJNK {\n font-size: 12px;\n color: rgba(255, 255, 255, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__reviewCompleteSubtitle___9fJNK {\n color: rgba(0, 0, 0, 0.35);\n}\n\n.styles-module__resetReviewBtn___06LuY {\n margin-top: 8px;\n height: 30px;\n padding: 0 14px;\n border-radius: 8px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n background: rgba(255, 255, 255, 0.05);\n color: rgba(255, 255, 255, 0.5);\n font-size: 12px;\n font-weight: 500;\n cursor: pointer;\n transition: background 0.15s ease, color 0.15s ease;\n}\n.styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(255, 255, 255, 0.1);\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.04);\n color: rgba(0, 0, 0, 0.45);\n}\n[data-ui-sniper-theme=light] .styles-module__resetReviewBtn___06LuY:hover {\n background: rgba(0, 0, 0, 0.08);\n color: rgba(0, 0, 0, 0.8);\n}';
|
|
8056
|
+
var classNames6 = { "reviewPanel": "styles-module__reviewPanel___z4gdL", "reviewPanelIn": "styles-module__reviewPanelIn___1sNcb", "exiting": "styles-module__exiting___l4pmU", "reviewPanelOut": "styles-module__reviewPanelOut___7C-Bb", "panelHeader": "styles-module__panelHeader___r8Uv9", "panelTitle": "styles-module__panelTitle___8rA2H", "panelTitleIcon": "styles-module__panelTitleIcon___IODxi", "panelCount": "styles-module__panelCount___lV7Px", "panelHeaderActions": "styles-module__panelHeaderActions___CcGKX", "panelIconBtn": "styles-module__panelIconBtn___GsW4v", "modeToggle": "styles-module__modeToggle___CYve-", "modeBtn": "styles-module__modeBtn___Awpty", "active": "styles-module__active___gLEBm", "emptyState": "styles-module__emptyState___qSyQN", "emptyIcon": "styles-module__emptyIcon___OBMKU", "emptyText": "styles-module__emptyText___u5Rr1", "emptySubtext": "styles-module__emptySubtext___loWrs", "cardList": "styles-module__cardList___UMVAa", "reviewCard": "styles-module__reviewCard___LEbPO", "cardFlipIn": "styles-module__cardFlipIn___XU-cU", "reviewed": "styles-module__reviewed___aXsqh", "cardTop": "styles-module__cardTop___FRDLH", "cardBadge": "styles-module__cardBadge___EZIAJ", "cardContent": "styles-module__cardContent___LYk3n", "cardElement": "styles-module__cardElement___XJpXk", "cardComment": "styles-module__cardComment___w0trE", "cardScreenshot": "styles-module__cardScreenshot___rv0u5", "cardSelectedText": "styles-module__cardSelectedText___8GX1g", "cardActions": "styles-module__cardActions___Macsz", "cardMeta": "styles-module__cardMeta___9ptB7", "cardActionBtns": "styles-module__cardActionBtns___dMPFQ", "cardActionBtn": "styles-module__cardActionBtn___2sVfv", "reviewedBtn": "styles-module__reviewedBtn___0ZT6J", "deleteBtn": "styles-module__deleteBtn___CoPUF", "copyBtn": "styles-module__copyBtn___oTyKC", "markDoneBtn": "styles-module__markDoneBtn___8KSUx", "flashcardArea": "styles-module__flashcardArea___mDFIj", "flashcard": "styles-module__flashcard___Cczc5", "flashcardHeader": "styles-module__flashcardHeader___jQA9j", "flashcardBadge": "styles-module__flashcardBadge___oxj9N", "flashcardElement": "styles-module__flashcardElement___LRiIM", "flashcardBody": "styles-module__flashcardBody___7OpWs", "flashcardComment": "styles-module__flashcardComment___V9CyW", "flashcardScreenshot": "styles-module__flashcardScreenshot___TA8ev", "flashcardSelectedText": "styles-module__flashcardSelectedText___qTc-g", "flashcardNav": "styles-module__flashcardNav___VJss5", "flashcardNavBtn": "styles-module__flashcardNavBtn___6ETeG", "flashcardProgress": "styles-module__flashcardProgress___Sfspj", "progressDots": "styles-module__progressDots___Pf-WJ", "progressDot": "styles-module__progressDot___Jpqcs", "progressText": "styles-module__progressText___ydmHE", "flashcardBottomActions": "styles-module__flashcardBottomActions___7C6rZ", "flashcardActionBtn": "styles-module__flashcardActionBtn___-2Zat", "jumpBtn": "styles-module__jumpBtn___EzLcP", "reviewComplete": "styles-module__reviewComplete___MCWa9", "reviewCompleteIcon": "styles-module__reviewCompleteIcon___unw0x", "reviewPulse": "styles-module__reviewPulse___rIvyF", "reviewCompleteTitle": "styles-module__reviewCompleteTitle___MeHeA", "reviewCompleteSubtitle": "styles-module__reviewCompleteSubtitle___9fJNK", "resetReviewBtn": "styles-module__resetReviewBtn___06LuY" };
|
|
8044
8057
|
if (typeof document !== "undefined") {
|
|
8045
8058
|
let style = document.getElementById("feedback-tool-styles-review-panel-styles");
|
|
8046
8059
|
if (!style) {
|
|
@@ -8173,7 +8186,7 @@ function ReviewPanel({
|
|
|
8173
8186
|
"button",
|
|
8174
8187
|
{
|
|
8175
8188
|
type: "button",
|
|
8176
|
-
className: styles_module_default5.cardActionBtn
|
|
8189
|
+
className: `${styles_module_default5.cardActionBtn} ${styles_module_default5.deleteBtn}`,
|
|
8177
8190
|
title: "Delete",
|
|
8178
8191
|
onClick: (e) => {
|
|
8179
8192
|
e.stopPropagation();
|
|
@@ -8191,7 +8204,7 @@ function ReviewPanel({
|
|
|
8191
8204
|
"button",
|
|
8192
8205
|
{
|
|
8193
8206
|
type: "button",
|
|
8194
|
-
className: styles_module_default5.cardActionBtn
|
|
8207
|
+
className: `${styles_module_default5.cardActionBtn} ${styles_module_default5.copyBtn}`,
|
|
8195
8208
|
title: "Copy",
|
|
8196
8209
|
onClick: (e) => {
|
|
8197
8210
|
e.stopPropagation();
|
|
@@ -8205,7 +8218,7 @@ function ReviewPanel({
|
|
|
8205
8218
|
"button",
|
|
8206
8219
|
{
|
|
8207
8220
|
type: "button",
|
|
8208
|
-
className: `${styles_module_default5.cardActionBtn} ${reviewedIds.has(ann.id) ? styles_module_default5.reviewedBtn : ""}`,
|
|
8221
|
+
className: `${styles_module_default5.cardActionBtn} ${styles_module_default5.markDoneBtn} ${reviewedIds.has(ann.id) ? styles_module_default5.reviewedBtn : ""}`,
|
|
8209
8222
|
title: reviewedIds.has(ann.id) ? "Mark unreviewed" : "Mark reviewed",
|
|
8210
8223
|
onClick: (e) => {
|
|
8211
8224
|
e.stopPropagation();
|
|
@@ -8412,7 +8425,7 @@ function ReviewPanel({
|
|
|
8412
8425
|
}
|
|
8413
8426
|
|
|
8414
8427
|
// src/components/page-toolbar-css/styles.module.scss
|
|
8415
|
-
var css7 = '.styles-module__toolbar___wNsdK svg[fill=none],\n.styles-module__markersLayer___-25j1 svg[fill=none],\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] {\n fill: none !important;\n}\n.styles-module__toolbar___wNsdK svg[fill=none] :not([fill]),\n.styles-module__markersLayer___-25j1 svg[fill=none] :not([fill]),\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] :not([fill]) {\n fill: none !important;\n}\n\n.styles-module__controlsContent___9GJWU :where(button, input, select, textarea, label) {\n background: unset;\n border: unset;\n border-radius: unset;\n padding: unset;\n margin: unset;\n color: unset;\n font-family: unset;\n font-weight: unset;\n font-style: unset;\n line-height: unset;\n letter-spacing: unset;\n text-transform: unset;\n text-decoration: unset;\n box-shadow: unset;\n outline: unset;\n}\n\n@keyframes styles-module__toolbarEnter___u8RRu {\n from {\n opacity: 0;\n transform: scale(0.5) rotate(90deg);\n }\n to {\n opacity: 1;\n transform: scale(1) rotate(0deg);\n }\n}\n@keyframes styles-module__toolbarHide___y8kaT {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.8);\n }\n}\n@keyframes styles-module__badgeEnter___mVQLj {\n from {\n opacity: 0;\n transform: scale(0);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleIn___c-r1K {\n from {\n opacity: 0;\n transform: scale(0.85);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleOut___Wctwz {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.85);\n }\n}\n@keyframes styles-module__slideUp___kgD36 {\n from {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n@keyframes styles-module__slideDown___zcdje {\n from {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n to {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n}\n@keyframes styles-module__fadeIn___b9qmf {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes styles-module__fadeOut___6Ut6- {\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n}\n@keyframes styles-module__hoverHighlightIn___6WYHY {\n from {\n opacity: 0;\n transform: scale(0.98);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__hoverTooltipIn___FYGQx {\n from {\n opacity: 0;\n transform: scale(0.95) translateY(4px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n.styles-module__disableTransitions___EopxO :is(*, *::before, *::after) {\n transition: none !important;\n}\n\n.styles-module__toolbar___wNsdK {\n position: fixed;\n bottom: 1.25rem;\n right: 1.25rem;\n width: 337px;\n z-index: 100000;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n pointer-events: none;\n transition: left 0s, top 0s, right 0s, bottom 0s;\n}\n\n:where(.styles-module__toolbar___wNsdK) {\n bottom: 1.25rem;\n right: 1.25rem;\n}\n\n.styles-module__toolbarContainer___dIhma {\n position: relative;\n user-select: none;\n margin-left: auto;\n align-self: flex-end;\n display: flex;\n align-items: center;\n justify-content: center;\n background: #1a1a1a;\n color: #fff;\n border: none;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);\n pointer-events: auto;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__entrance___sgHd8 {\n animation: styles-module__toolbarEnter___u8RRu 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__hiding___1td44 {\n animation: styles-module__toolbarHide___y8kaT 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn {\n width: 44px;\n height: 44px;\n border-radius: 22px;\n padding: 0;\n cursor: pointer;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn svg {\n margin-top: -1px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #2a2a2a;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:active {\n transform: scale(0.95);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx {\n height: 44px;\n border-radius: 1.5rem;\n padding: 0.375rem;\n width: 297px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx.styles-module__serverConnected___Gfbou {\n width: 337px;\n}\n\n.styles-module__toggleContent___0yfyP {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: opacity 0.1s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toggleContent___0yfyP.styles-module__visible___KHwEW {\n opacity: 1;\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__toggleContent___0yfyP.styles-module__hidden___Ae8H4 {\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__controlsContent___9GJWU {\n display: flex;\n align-items: center;\n gap: 0.375rem;\n transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__controlsContent___9GJWU.styles-module__visible___KHwEW {\n opacity: 1;\n filter: blur(0px);\n transform: scale(1);\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__controlsContent___9GJWU.styles-module__hidden___Ae8H4 {\n pointer-events: none;\n opacity: 0;\n filter: blur(10px);\n transform: scale(0.4);\n}\n\n.styles-module__badge___2XsgF {\n position: absolute;\n top: -13px;\n right: -13px;\n user-select: none;\n min-width: 18px;\n height: 18px;\n padding: 0 5px;\n border-radius: 9px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.04);\n opacity: 1;\n transition: transform 0.3s ease, opacity 0.2s ease;\n transform: scale(1);\n}\n.styles-module__badge___2XsgF.styles-module__fadeOut___6Ut6- {\n opacity: 0;\n transform: scale(0);\n pointer-events: none;\n}\n.styles-module__badge___2XsgF.styles-module__entrance___sgHd8 {\n animation: styles-module__badgeEnter___mVQLj 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s both;\n}\n\n.styles-module__controlButton___8Q0jc {\n position: relative;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.85);\n transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, opacity 0.2s ease;\n}\n.styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n}\n.styles-module__controlButton___8Q0jc:active:not(:disabled) {\n transform: scale(0.92);\n}\n.styles-module__controlButton___8Q0jc:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n.styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n color: var(--ui-sniper-color-red);\n}\n.styles-module__controlButton___8Q0jc[data-no-hover=true], .styles-module__controlButton___8Q0jc.styles-module__statusShowing___te6iu {\n cursor: default;\n pointer-events: none;\n background: transparent !important;\n}\n.styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n cursor: default;\n}\n.styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n\n.styles-module__buttonBadge___NeFWb {\n position: absolute;\n top: 0px;\n right: 0px;\n min-width: 16px;\n height: 16px;\n padding: 0 4px;\n border-radius: 8px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 0 0 2px #1a1a1a, 0 1px 3px rgba(0, 0, 0, 0.2);\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__buttonBadge___NeFWb {\n box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(0, 0, 0, 0.2);\n}\n\n@keyframes styles-module__mcpIndicatorPulseConnected___EDodZ {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpIndicatorPulseConnecting___cCYte {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-yellow) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-yellow) 0%, transparent);\n }\n}\n.styles-module__mcpIndicator___zGJeL {\n position: absolute;\n top: 3px;\n right: 3px;\n width: 6px;\n height: 6px;\n border-radius: 50%;\n pointer-events: none;\n transition: background-color 0.3s ease, opacity 0.15s ease, transform 0.15s ease;\n opacity: 1;\n transform: scale(1);\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpIndicatorPulseConnected___EDodZ 2.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpIndicatorPulseConnecting___cCYte 1.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__hidden___Ae8H4 {\n opacity: 0;\n transform: scale(0);\n animation: none;\n}\n\n@keyframes styles-module__connectionPulse___-Zycw {\n 0%, 100% {\n opacity: 1;\n transform: scale(1);\n }\n 50% {\n opacity: 0.6;\n transform: scale(0.9);\n }\n}\n.styles-module__connectionIndicatorWrapper___L-e-3 {\n width: 8px;\n height: 34px;\n margin-left: 6px;\n margin-right: 6px;\n}\n\n.styles-module__connectionIndicator___afk9p {\n position: relative;\n width: 8px;\n height: 8px;\n border-radius: 50%;\n opacity: 0;\n transition: opacity 0.3s ease, background-color 0.3s ease;\n cursor: default;\n}\n\n.styles-module__connectionIndicatorVisible___C-i5B {\n opacity: 1;\n}\n\n.styles-module__connectionIndicatorConnected___IY8pR {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__connectionPulse___-Zycw 2.5s ease-in-out infinite;\n}\n\n.styles-module__connectionIndicatorDisconnected___kmpaZ {\n background-color: var(--ui-sniper-color-red);\n animation: none;\n}\n\n.styles-module__connectionIndicatorConnecting___QmSLH {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__connectionPulse___-Zycw 1s ease-in-out infinite;\n}\n\n.styles-module__buttonWrapper___rBcdv {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n opacity: 1;\n visibility: visible;\n transform: translateX(-50%) scale(1);\n transition-delay: 0.85s;\n}\n.styles-module__buttonWrapper___rBcdv:has(.styles-module__controlButton___8Q0jc:disabled):hover .styles-module__buttonTooltip___Burd9 {\n opacity: 0;\n visibility: hidden;\n}\n\n.styles-module__tooltipsInSession___-0lHH .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transition-delay: 0s;\n}\n\n.styles-module__sendButtonWrapper___UUxG6 {\n width: 0;\n opacity: 0;\n overflow: hidden;\n pointer-events: none;\n margin-left: -0.375rem;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), margin 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6 .styles-module__controlButton___8Q0jc {\n transform: scale(0.8);\n transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU {\n width: 34px;\n opacity: 1;\n overflow: visible;\n pointer-events: auto;\n margin-left: 0;\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU .styles-module__controlButton___8Q0jc {\n transform: scale(1);\n}\n\n.styles-module__buttonTooltip___Burd9 {\n position: absolute;\n bottom: calc(100% + 14px);\n left: 50%;\n transform: translateX(-50%) scale(0.95);\n padding: 6px 10px;\n background: #1a1a1a;\n color: rgba(255, 255, 255, 0.9);\n font-size: 12px;\n font-weight: 500;\n border-radius: 8px;\n white-space: nowrap;\n opacity: 0;\n visibility: hidden;\n pointer-events: none;\n z-index: 100001;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n transition: opacity 0.135s ease, transform 0.135s ease, visibility 0.135s ease;\n}\n.styles-module__buttonTooltip___Burd9::after {\n content: "";\n position: absolute;\n top: calc(100% - 4px);\n left: 50%;\n transform: translateX(-50%) rotate(45deg);\n width: 8px;\n height: 8px;\n background: #1a1a1a;\n border-radius: 0 0 2px 0;\n}\n\n.styles-module__shortcut___lEAQk {\n margin-left: 4px;\n opacity: 0.5;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9 {\n bottom: auto;\n top: calc(100% + 14px);\n transform: translateX(-50%) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9::after {\n top: -4px;\n bottom: auto;\n border-radius: 2px 0 0 0;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-50%) scale(1);\n}\n\n.styles-module__tooltipsHidden___VtLJG .styles-module__buttonTooltip___Burd9 {\n opacity: 0 !important;\n visibility: hidden !important;\n transition: none !important;\n}\n\n.styles-module__tooltipVisible___0jcCv,\n.styles-module__tooltipsHidden___VtLJG .styles-module__tooltipVisible___0jcCv {\n opacity: 1 !important;\n visibility: visible !important;\n transform: translateX(-50%) scale(1) !important;\n transition-delay: 0s !important;\n}\n\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9::after {\n left: 16px;\n}\n.styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9::after {\n left: auto;\n right: 8px;\n}\n.styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__divider___c--s1 {\n width: 1px;\n height: 12px;\n background: rgba(255, 255, 255, 0.15);\n margin: 0 0.125rem;\n}\n\n.styles-module__overlay___Q1O9y {\n position: fixed;\n inset: 0;\n z-index: 99997;\n pointer-events: none;\n}\n.styles-module__overlay___Q1O9y > * {\n pointer-events: auto;\n}\n\n.styles-module__hoverHighlight___ogakW {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-accent) 50%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-accent) 4%, transparent);\n pointer-events: none !important;\n box-sizing: border-box;\n will-change: opacity;\n contain: layout style;\n}\n.styles-module__hoverHighlight___ogakW.styles-module__enter___WFIki {\n animation: styles-module__hoverHighlightIn___6WYHY 0.12s ease-out forwards;\n}\n\n.styles-module__multiSelectOutline___cSJ-m {\n position: fixed;\n border: 2px dashed color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__singleSelectOutline___QhX-O {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-blue) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__hoverTooltip___bvLk7 {\n position: fixed;\n font-size: 0.6875rem;\n font-weight: 500;\n color: #fff;\n background: rgba(0, 0, 0, 0.85);\n padding: 0.35rem 0.6rem;\n border-radius: 0.375rem;\n pointer-events: none !important;\n white-space: nowrap;\n max-width: 280px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.styles-module__hoverTooltip___bvLk7.styles-module__enter___WFIki {\n animation: styles-module__hoverTooltipIn___FYGQx 0.1s ease-out forwards;\n}\n\n.styles-module__hoverReactPath___gx1IJ {\n font-size: 0.625rem;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.15rem;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__hoverElementName___QMLMl {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markersLayer___-25j1 {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__markersLayer___-25j1 > * {\n pointer-events: auto;\n}\n\n.styles-module__fixedMarkersLayer___ffyX6 {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__fixedMarkersLayer___ffyX6 > * {\n pointer-events: auto;\n}\n\n.styles-module__marker___6sQrs {\n position: absolute;\n width: 22px;\n height: 22px;\n background: var(--ui-sniper-color-blue);\n color: white;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 0.6875rem;\n font-weight: 600;\n transform: translate(-50%, -50%) scale(1);\n opacity: 1;\n cursor: pointer;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.04);\n user-select: none;\n will-change: transform, opacity;\n contain: layout style;\n z-index: 1;\n}\n.styles-module__marker___6sQrs:hover {\n z-index: 2;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7) {\n transition: background-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__marker___6sQrs.styles-module__enter___WFIki {\n animation: styles-module__markerIn___5FaAP 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;\n}\n.styles-module__marker___6sQrs.styles-module__exit___fyOJ0 {\n animation: styles-module__markerOut___GU5jX 0.2s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs.styles-module__clearing___FQ--7 {\n animation: styles-module__markerOut___GU5jX 0.15s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7):hover {\n transform: translate(-50%, -50%) scale(1.1);\n}\n.styles-module__marker___6sQrs.styles-module__pending___2IHLC {\n position: fixed;\n background-color: var(--ui-sniper-color-blue);\n cursor: default;\n}\n.styles-module__marker___6sQrs.styles-module__fixed___dBMHC {\n position: fixed;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz {\n background-color: var(--ui-sniper-color-green);\n width: 26px;\n height: 26px;\n border-radius: 6px;\n font-size: 0.75rem;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz.styles-module__pending___2IHLC {\n background-color: var(--ui-sniper-color-green);\n}\n.styles-module__marker___6sQrs.styles-module__hovered___ZgXIy {\n background-color: var(--ui-sniper-color-red);\n}\n\n.styles-module__renumber___nCTxD {\n display: block;\n animation: styles-module__renumberRoll___Wgbq3 0.2s ease-out;\n}\n\n@keyframes styles-module__renumberRoll___Wgbq3 {\n 0% {\n transform: translateX(-40%);\n opacity: 0;\n }\n 100% {\n transform: translateX(0);\n opacity: 1;\n }\n}\n.styles-module__markerTooltip___aLJID {\n position: absolute;\n top: calc(100% + 10px);\n left: 50%;\n transform: translateX(-50%) scale(0.909);\n z-index: 100002;\n background: #1a1a1a;\n padding: 8px 0.75rem;\n border-radius: 0.75rem;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n font-weight: 400;\n color: #fff;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n min-width: 120px;\n max-width: 200px;\n pointer-events: none;\n cursor: default;\n}\n.styles-module__markerTooltip___aLJID.styles-module__enter___WFIki {\n animation: styles-module__tooltipIn___0N31w 0.1s ease-out forwards;\n}\n\n.styles-module__markerQuote___FHmrz {\n display: block;\n font-size: 12px;\n font-style: italic;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.3125rem;\n line-height: 1.4;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markerNote___QkrrS {\n display: block;\n font-size: 13px;\n font-weight: 400;\n line-height: 1.4;\n color: #fff;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n padding-bottom: 2px;\n}\n\n.styles-module__markerHint___2iF-6 {\n display: block;\n font-size: 0.625rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.6);\n margin-top: 0.375rem;\n white-space: nowrap;\n}\n\n.styles-module__settingsPanel___OxX3Y {\n position: absolute;\n right: 5px;\n bottom: calc(100% + 0.5rem);\n z-index: 1;\n overflow: hidden;\n background: #1c1c1c;\n border-radius: 1rem;\n padding: 13px 0 16px;\n min-width: 205px;\n cursor: default;\n opacity: 1;\n box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);\n transition: background-color 0.25s ease, box-shadow 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y::before, .styles-module__settingsPanel___OxX3Y::after {\n content: "";\n position: absolute;\n top: 0;\n bottom: 0;\n width: 16px;\n z-index: 2;\n pointer-events: none;\n}\n.styles-module__settingsPanel___OxX3Y::before {\n left: 0;\n background: linear-gradient(to right, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y::after {\n right: 0;\n background: linear-gradient(to left, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsHeader___pwDY9,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrand___0gJeM,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrandSlash___uTG18,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsVersion___TUcFq,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsSection___m-YM2,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleButton___FMKfw,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleDot___nPgLY,\n.styles-module__settingsPanel___OxX3Y .styles-module__dropdownButton___16NPz,\n.styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa,\n.styles-module__settingsPanel___OxX3Y .styles-module__customCheckbox___U39ax,\n.styles-module__settingsPanel___OxX3Y .styles-module__sliderLabel___U8sPr,\n.styles-module__settingsPanel___OxX3Y .styles-module__slider___GLdxp,\n.styles-module__settingsPanel___OxX3Y .styles-module__themeToggle___2rUjA {\n transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__enter___WFIki {\n opacity: 1;\n transform: translateY(0) scale(1);\n filter: blur(0px);\n transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__exit___fyOJ0 {\n opacity: 0;\n transform: translateY(8px) scale(0.95);\n filter: blur(5px);\n pointer-events: none;\n transition: opacity 0.1s ease, transform 0.1s ease, filter 0.1s ease;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y {\n background: #1a1a1a;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.6);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12 {\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12:hover {\n background: rgba(255, 255, 255, 0.1);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.15);\n color: #fff;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa {\n color: rgba(255, 255, 255, 0.85);\n}\n\n.styles-module__settingsPanelContainer___Xksv8 {\n overflow: visible;\n position: relative;\n display: flex;\n padding: 0 1rem;\n}\n\n.styles-module__settingsPage___6YfHH {\n min-width: 100%;\n flex-shrink: 0;\n transition: transform 0.2s ease, opacity 0.2s ease;\n transition-delay: 0s;\n opacity: 1;\n}\n\n.styles-module__settingsPage___6YfHH.styles-module__slideLeft___Ps01J {\n transform: translateX(-24px);\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6 {\n position: absolute;\n top: 0;\n left: 24px;\n width: 100%;\n height: 100%;\n padding: 3px 1rem 0;\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n transition: transform 0.2s ease, opacity 0.2s ease;\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6.styles-module__slideIn___4-qXe {\n transform: translateX(-24px);\n opacity: 1;\n pointer-events: auto;\n}\n\n.styles-module__settingsNavLink___wCzJt {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n padding: 0;\n border: none;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(0, 0, 0, 0.8);\n}\n.styles-module__settingsNavLink___wCzJt svg {\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover svg {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt svg {\n color: rgba(0, 0, 0, 0.25);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover svg {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__settingsNavLinkRight___ZWwhj {\n display: flex;\n align-items: center;\n gap: 6px;\n}\n\n.styles-module__mcpNavIndicator___cl9pO {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s ease-in-out infinite;\n}\n\n.styles-module__settingsBackButton___bIe2j {\n display: flex;\n align-items: center;\n gap: 4px;\n padding: 6px 0 12px 0;\n margin: -6px 0 0.5rem 0;\n border: none;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 0;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 500;\n letter-spacing: -0.15px;\n color: #fff;\n cursor: pointer;\n transition: transform 0.12s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j svg {\n opacity: 0.4;\n flex-shrink: 0;\n transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsBackButton___bIe2j:hover svg {\n opacity: 1;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j {\n color: rgba(0, 0, 0, 0.85);\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__automationHeader___InP0r {\n display: flex;\n align-items: center;\n gap: 0.125rem;\n font-size: 0.8125rem;\n font-weight: 400;\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__automationHeader___InP0r {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__automationDescription___NKlmo {\n font-size: 0.6875rem;\n font-weight: 300;\n color: rgba(255, 255, 255, 0.5);\n margin-top: 2px;\n line-height: 14px;\n}\n[data-ui-sniper-theme=light] .styles-module__automationDescription___NKlmo {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__learnMoreLink___8xv-x {\n color: rgba(255, 255, 255, 0.8);\n text-decoration: underline dotted;\n text-decoration-color: rgba(255, 255, 255, 0.2);\n text-underline-offset: 2px;\n transition: color 0.15s ease;\n}\n.styles-module__learnMoreLink___8xv-x:hover {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x {\n color: rgba(0, 0, 0, 0.6);\n text-decoration-color: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x:hover {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__autoSendRow___UblX5 {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__autoSendLabel___icDc2 {\n font-size: 0.6875rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: #66b8ff;\n color: color(display-p3 0.4 0.72 1);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2 {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__webhookUrlInput___2375C {\n display: block;\n width: 100%;\n flex: 1;\n min-height: 60px;\n box-sizing: border-box;\n margin-top: 11px;\n padding: 8px 10px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.03);\n font-family: inherit;\n font-size: 0.75rem;\n font-weight: 400;\n color: #fff;\n outline: none;\n resize: none;\n user-select: text;\n transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;\n}\n.styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(255, 255, 255, 0.3);\n}\n.styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(0, 0, 0, 0.25);\n background: rgba(0, 0, 0, 0.05);\n}\n\n.styles-module__settingsHeader___pwDY9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n margin-bottom: 0.5rem;\n padding-bottom: 9px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n}\n\n.styles-module__settingsBrand___0gJeM {\n font-size: 0.8125rem;\n font-weight: 600;\n letter-spacing: -0.0094em;\n color: #fff;\n text-decoration: none;\n}\n\n.styles-module__settingsBrandSlash___uTG18 {\n color: var(--ui-sniper-color-accent);\n transition: color 0.2s ease;\n}\n\n.styles-module__settingsVersion___TUcFq {\n font-size: 11px;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n margin-left: auto;\n letter-spacing: -0.0094em;\n}\n\n.styles-module__settingsSection___m-YM2 + .styles-module__settingsSection___m-YM2 {\n margin-top: 0.5rem;\n padding-top: 0.5rem;\n border-top: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsSection___m-YM2.styles-module__settingsSectionExtraPadding___jdhFV {\n padding-top: calc(0.5rem + 4px);\n}\n\n.styles-module__settingsSectionGrow___h-5HZ {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.styles-module__settingsRow___3sdhc {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n}\n.styles-module__settingsRow___3sdhc.styles-module__settingsRowMarginTop___zA0Sp {\n margin-top: 8px;\n}\n\n.styles-module__dropdownContainer___BVnxe {\n position: relative;\n}\n\n.styles-module__dropdownButton___16NPz {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0.25rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 600;\n color: #fff;\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownButton___16NPz:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownButton___16NPz svg {\n opacity: 0.6;\n}\n\n.styles-module__cycleButton___FMKfw {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0;\n border: none;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: #fff;\n cursor: pointer;\n letter-spacing: -0.0094em;\n}\n[data-ui-sniper-theme=light] .styles-module__cycleButton___FMKfw {\n color: rgba(0, 0, 0, 0.85);\n}\n.styles-module__cycleButton___FMKfw:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n\n.styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.2);\n}\n.styles-module__settingsRowDisabled___EgS0V .styles-module__toggleSwitch___l4Ygm {\n opacity: 0.4;\n cursor: not-allowed;\n}\n\n@keyframes styles-module__cycleTextIn___Q6zJf {\n 0% {\n opacity: 0;\n transform: translateY(-6px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n.styles-module__cycleButtonText___fD1LR {\n display: inline-block;\n animation: styles-module__cycleTextIn___Q6zJf 0.2s ease-out;\n}\n\n.styles-module__cycleDots___LWuoQ {\n display: flex;\n flex-direction: column;\n gap: 2px;\n}\n\n.styles-module__cycleDot___nPgLY {\n width: 3px;\n height: 3px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.3);\n transform: scale(0.667);\n transition: background-color 0.25s ease-out, transform 0.25s ease-out;\n}\n.styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: #fff;\n transform: scale(1);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY {\n background: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: rgba(0, 0, 0, 0.7);\n}\n\n.styles-module__dropdownMenu___k73ER {\n position: absolute;\n right: 0;\n top: calc(100% + 0.25rem);\n background: #1a1a1a;\n border-radius: 0.5rem;\n padding: 0.25rem;\n min-width: 120px;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);\n z-index: 10;\n animation: styles-module__scaleIn___c-r1K 0.15s ease-out;\n}\n\n.styles-module__dropdownItem___ylsLj {\n width: 100%;\n display: flex;\n align-items: center;\n padding: 0.5rem 0.625rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n cursor: pointer;\n text-align: left;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownItem___ylsLj:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownItem___ylsLj.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n font-weight: 600;\n}\n\n.styles-module__settingsLabel___8UjfX {\n font-size: 0.8125rem;\n font-weight: 400;\n letter-spacing: -0.0094em;\n color: rgba(255, 255, 255, 0.5);\n display: flex;\n align-items: center;\n gap: 0.125rem;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__settingsLabelMarker___ewdtV {\n padding-top: 3px;\n margin-bottom: 10px;\n}\n\n.styles-module__settingsOptions___LyrBA {\n display: flex;\n gap: 0.25rem;\n}\n\n.styles-module__settingsOption___UNa12 {\n flex: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.25rem;\n padding: 0.375rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.6875rem;\n font-weight: 500;\n color: rgba(0, 0, 0, 0.7);\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n}\n.styles-module__settingsOption___UNa12:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__sliderContainer___ducXj {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\n.styles-module__slider___GLdxp {\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n height: 4px;\n background: rgba(255, 255, 255, 0.15);\n border-radius: 2px;\n outline: none;\n cursor: pointer;\n}\n.styles-module__slider___GLdxp::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n background: white;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp::-moz-range-thumb {\n width: 14px;\n height: 14px;\n background: white;\n border: none;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp:hover::-webkit-slider-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n.styles-module__slider___GLdxp:hover::-moz-range-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__sliderLabels___FhLDB {\n display: flex;\n justify-content: space-between;\n}\n\n.styles-module__sliderLabel___U8sPr {\n font-size: 0.625rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__sliderLabel___U8sPr:hover {\n color: rgba(255, 255, 255, 0.7);\n}\n.styles-module__sliderLabel___U8sPr.styles-module__active___-zoN6 {\n color: rgba(255, 255, 255, 0.9);\n}\n\n.styles-module__colorOptions___iHCNX {\n display: flex;\n gap: 0.5rem;\n margin-top: 0.375rem;\n margin-bottom: 1px;\n}\n\n.styles-module__colorOption___IodiY {\n display: block;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n border: 2px solid transparent;\n background-color: var(--swatch);\n cursor: pointer;\n transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOption___IodiY {\n background-color: var(--swatch-p3);\n }\n}\n.styles-module__colorOption___IodiY:hover {\n transform: scale(1.15);\n}\n.styles-module__colorOption___IodiY.styles-module__selected___OwRqP {\n transform: scale(0.83);\n}\n\n.styles-module__colorOptionRing___U2xpo {\n display: flex;\n width: 24px;\n height: 24px;\n border: 2px solid transparent;\n border-radius: 50%;\n transition: border-color 0.3s ease;\n}\n.styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch-p3);\n }\n}\n\n.styles-module__settingsToggle___fBrFn {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n cursor: pointer;\n}\n.styles-module__settingsToggle___fBrFn + .styles-module__settingsToggle___fBrFn {\n margin-top: calc(0.5rem + 6px);\n}\n.styles-module__settingsToggle___fBrFn input[type=checkbox] {\n position: absolute;\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__settingsToggle___fBrFn.styles-module__settingsToggleMarginBottom___MZUyF {\n margin-bottom: calc(0.5rem + 6px);\n}\n\n.styles-module__customCheckbox___U39ax {\n position: relative;\n width: 14px;\n height: 14px;\n border: 1px solid rgba(255, 255, 255, 0.2);\n border-radius: 4px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n transition: background-color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__customCheckbox___U39ax svg {\n color: #1a1a1a;\n opacity: 1;\n transition: opacity 0.15s ease;\n}\ninput[type=checkbox]:checked + .styles-module__customCheckbox___U39ax {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgb(255, 255, 255);\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax {\n border: 1px solid rgba(0, 0, 0, 0.15);\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo {\n border-color: #1a1a1a;\n background: #1a1a1a;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo svg {\n color: #fff;\n}\n\n.styles-module__toggleLabel___Xm8Aa {\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n letter-spacing: -0.0094em;\n display: flex;\n align-items: center;\n gap: 0.25rem;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleLabel___Xm8Aa {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__toggleSwitch___l4Ygm {\n position: relative;\n display: inline-block;\n width: 24px;\n height: 16px;\n flex-shrink: 0;\n cursor: pointer;\n transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n.styles-module__toggleSwitch___l4Ygm input {\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn {\n background-color: var(--ui-sniper-color-blue);\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn::before {\n transform: translateX(8px);\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw {\n opacity: 0.4;\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw .styles-module__toggleSlider___wprIn {\n cursor: not-allowed;\n}\n\n.styles-module__toggleSlider___wprIn {\n position: absolute;\n cursor: pointer;\n inset: 0;\n border-radius: 16px;\n background: #484848;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleSlider___wprIn {\n background: #dddddd;\n}\n.styles-module__toggleSlider___wprIn::before {\n content: "";\n position: absolute;\n height: 12px;\n width: 12px;\n left: 2px;\n bottom: 2px;\n background: white;\n border-radius: 50%;\n transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n@keyframes styles-module__mcpPulse___uNggr {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpPulseError___fov9B {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n}\n.styles-module__mcpStatusDot___ibgkc {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__disconnected___cHPxR {\n background-color: var(--ui-sniper-color-red);\n animation: styles-module__mcpPulseError___fov9B 2s infinite;\n}\n\n.styles-module__drawCanvas___7cG9U {\n position: fixed;\n inset: 0;\n z-index: 99996;\n pointer-events: none !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6 {\n pointer-events: auto !important;\n cursor: crosshair !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6[data-stroke-hover] {\n cursor: pointer !important;\n}\n\n.styles-module__dragSelection___kZLq2 {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 8%, transparent);\n pointer-events: none;\n z-index: 99997;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n.styles-module__dragCount___KM90j {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n background-color: var(--ui-sniper-color-green);\n color: white;\n font-size: 0.875rem;\n font-weight: 600;\n padding: 0.25rem 0.5rem;\n border-radius: 1rem;\n min-width: 1.5rem;\n text-align: center;\n}\n\n.styles-module__highlightsContainer___-0xzG {\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n z-index: 99996;\n}\n\n.styles-module__selectedElementHighlight___fyVlI {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n border-radius: 4px;\n background: color-mix(in srgb, var(--ui-sniper-color-green) 6%, transparent);\n pointer-events: none;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #f5f5f5;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9 {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9::after {\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__divider___c--s1 {\n background: rgba(0, 0, 0, 0.1);\n}\n\n@media (max-width: 768px), (pointer: coarse) {\n .styles-module__toolbarContainer___dIhma {\n bottom: 24px;\n top: auto !important;\n left: 50% !important;\n transform: translateX(-50%) !important;\n width: max-content;\n max-width: 90vw;\n }\n}\n.styles-module__centerCrosshair___UQ3GL {\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairDot___YjR0R {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 6px;\n height: 6px;\n background-color: var(--ui-sniper-color-accent);\n border-radius: 50%;\n box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineHorizontal___VX9Ks {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 20px;\n height: 2px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineVertical___ZEZ7X {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 2px;\n height: 20px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}';
|
|
8428
|
+
var css7 = '.styles-module__toolbar___wNsdK svg[fill=none],\n.styles-module__markersLayer___-25j1 svg[fill=none],\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] {\n fill: none !important;\n}\n.styles-module__toolbar___wNsdK svg[fill=none] :not([fill]),\n.styles-module__markersLayer___-25j1 svg[fill=none] :not([fill]),\n.styles-module__fixedMarkersLayer___ffyX6 svg[fill=none] :not([fill]) {\n fill: none !important;\n}\n\n.styles-module__controlsContent___9GJWU :where(button, input, select, textarea, label) {\n background: unset;\n border: unset;\n border-radius: unset;\n padding: unset;\n margin: unset;\n color: unset;\n font-family: unset;\n font-weight: unset;\n font-style: unset;\n line-height: unset;\n letter-spacing: unset;\n text-transform: unset;\n text-decoration: unset;\n box-shadow: unset;\n outline: unset;\n}\n\n@keyframes styles-module__toolbarEnter___u8RRu {\n from {\n opacity: 0;\n transform: scale(0.5) rotate(90deg);\n }\n to {\n opacity: 1;\n transform: scale(1) rotate(0deg);\n }\n}\n@keyframes styles-module__toolbarHide___y8kaT {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.8);\n }\n}\n@keyframes styles-module__badgeEnter___mVQLj {\n from {\n opacity: 0;\n transform: scale(0);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleIn___c-r1K {\n from {\n opacity: 0;\n transform: scale(0.85);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__scaleOut___Wctwz {\n from {\n opacity: 1;\n transform: scale(1);\n }\n to {\n opacity: 0;\n transform: scale(0.85);\n }\n}\n@keyframes styles-module__slideUp___kgD36 {\n from {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n@keyframes styles-module__slideDown___zcdje {\n from {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n to {\n opacity: 0;\n transform: scale(0.85) translateY(8px);\n }\n}\n@keyframes styles-module__fadeIn___b9qmf {\n from {\n opacity: 0;\n }\n to {\n opacity: 1;\n }\n}\n@keyframes styles-module__fadeOut___6Ut6- {\n from {\n opacity: 1;\n }\n to {\n opacity: 0;\n }\n}\n@keyframes styles-module__hoverHighlightIn___6WYHY {\n from {\n opacity: 0;\n transform: scale(0.98);\n }\n to {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes styles-module__hoverTooltipIn___FYGQx {\n from {\n opacity: 0;\n transform: scale(0.95) translateY(4px);\n }\n to {\n opacity: 1;\n transform: scale(1) translateY(0);\n }\n}\n.styles-module__disableTransitions___EopxO :is(*, *::before, *::after) {\n transition: none !important;\n}\n\n.styles-module__toolbar___wNsdK {\n position: fixed;\n bottom: 1.25rem;\n right: 1.25rem;\n width: 337px;\n z-index: 100000;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n pointer-events: none;\n transition: left 0s, top 0s, right 0s, bottom 0s;\n}\n\n:where(.styles-module__toolbar___wNsdK) {\n bottom: 1.25rem;\n right: 1.25rem;\n}\n\n.styles-module__toolbarContainer___dIhma {\n position: relative;\n user-select: none;\n margin-left: auto;\n align-self: flex-end;\n display: flex;\n align-items: center;\n justify-content: center;\n background: #1a1a1a;\n color: #fff;\n border: 2px solid var(--ui-sniper-color-green);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);\n pointer-events: auto;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__entrance___sgHd8 {\n animation: styles-module__toolbarEnter___u8RRu 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__hiding___1td44 {\n animation: styles-module__toolbarHide___y8kaT 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;\n pointer-events: none;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn {\n width: 44px;\n height: 44px;\n border-radius: 22px;\n padding: 0;\n cursor: pointer;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn svg {\n margin-top: -1px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #2a2a2a;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:active {\n transform: scale(0.95);\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx {\n height: 44px;\n border-radius: 1.5rem;\n padding: 0.375rem;\n width: 297px;\n}\n.styles-module__toolbarContainer___dIhma.styles-module__expanded___ofKPx.styles-module__serverConnected___Gfbou {\n width: 337px;\n}\n\n.styles-module__toggleContent___0yfyP {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n transition: opacity 0.1s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__toggleContent___0yfyP.styles-module__visible___KHwEW {\n opacity: 1;\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__toggleContent___0yfyP.styles-module__hidden___Ae8H4 {\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__controlsContent___9GJWU {\n display: flex;\n align-items: center;\n gap: 0.375rem;\n transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__controlsContent___9GJWU.styles-module__visible___KHwEW {\n opacity: 1;\n filter: blur(0px);\n transform: scale(1);\n visibility: visible;\n pointer-events: auto;\n}\n.styles-module__controlsContent___9GJWU.styles-module__hidden___Ae8H4 {\n pointer-events: none;\n opacity: 0;\n filter: blur(10px);\n transform: scale(0.4);\n}\n\n.styles-module__badge___2XsgF {\n position: absolute;\n top: -13px;\n right: -13px;\n user-select: none;\n min-width: 18px;\n height: 18px;\n padding: 0 5px;\n border-radius: 9px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.04);\n opacity: 1;\n transition: transform 0.3s ease, opacity 0.2s ease;\n transform: scale(1);\n}\n.styles-module__badge___2XsgF.styles-module__fadeOut___6Ut6- {\n opacity: 0;\n transform: scale(0);\n pointer-events: none;\n}\n.styles-module__badge___2XsgF.styles-module__entrance___sgHd8 {\n animation: styles-module__badgeEnter___mVQLj 0.3s cubic-bezier(0.34, 1.2, 0.64, 1) 0.4s both;\n}\n\n.styles-module__controlButton___8Q0jc {\n position: relative;\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 34px;\n height: 34px;\n border-radius: 50%;\n border: none;\n background: transparent;\n color: rgba(255, 255, 255, 0.85);\n transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, opacity 0.2s ease;\n}\n.styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n}\n.styles-module__controlButton___8Q0jc:active:not(:disabled) {\n transform: scale(0.92);\n}\n.styles-module__controlButton___8Q0jc:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n.styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n.styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n color: var(--ui-sniper-color-red);\n}\n.styles-module__controlButton___8Q0jc[data-no-hover=true], .styles-module__controlButton___8Q0jc.styles-module__statusShowing___te6iu {\n cursor: default;\n pointer-events: none;\n background: transparent !important;\n}\n.styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n cursor: default;\n}\n.styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background-color: color-mix(in srgb, var(--ui-sniper-color-red) 25%, transparent);\n}\n\n.styles-module__buttonBadge___NeFWb {\n position: absolute;\n top: 0px;\n right: 0px;\n min-width: 16px;\n height: 16px;\n padding: 0 4px;\n border-radius: 8px;\n background-color: var(--ui-sniper-color-accent);\n color: white;\n font-size: 0.625rem;\n font-weight: 600;\n display: flex;\n align-items: center;\n justify-content: center;\n box-shadow: 0 0 0 2px #1a1a1a, 0 1px 3px rgba(0, 0, 0, 0.2);\n pointer-events: none;\n}\n[data-ui-sniper-theme=light] .styles-module__buttonBadge___NeFWb {\n box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(0, 0, 0, 0.2);\n}\n\n@keyframes styles-module__mcpIndicatorPulseConnected___EDodZ {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpIndicatorPulseConnecting___cCYte {\n 0%, 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-yellow) 50%, transparent);\n }\n 50% {\n box-shadow: 0 0 0 5px color-mix(in srgb, var(--ui-sniper-color-yellow) 0%, transparent);\n }\n}\n.styles-module__mcpIndicator___zGJeL {\n position: absolute;\n top: 3px;\n right: 3px;\n width: 6px;\n height: 6px;\n border-radius: 50%;\n pointer-events: none;\n transition: background-color 0.3s ease, opacity 0.15s ease, transform 0.15s ease;\n opacity: 1;\n transform: scale(1);\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpIndicatorPulseConnected___EDodZ 2.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpIndicatorPulseConnecting___cCYte 1.5s ease-in-out infinite;\n}\n.styles-module__mcpIndicator___zGJeL.styles-module__hidden___Ae8H4 {\n opacity: 0;\n transform: scale(0);\n animation: none;\n}\n\n@keyframes styles-module__connectionPulse___-Zycw {\n 0%, 100% {\n opacity: 1;\n transform: scale(1);\n }\n 50% {\n opacity: 0.6;\n transform: scale(0.9);\n }\n}\n.styles-module__connectionIndicatorWrapper___L-e-3 {\n width: 8px;\n height: 34px;\n margin-left: 6px;\n margin-right: 6px;\n}\n\n.styles-module__connectionIndicator___afk9p {\n position: relative;\n width: 8px;\n height: 8px;\n border-radius: 50%;\n opacity: 0;\n transition: opacity 0.3s ease, background-color 0.3s ease;\n cursor: default;\n}\n\n.styles-module__connectionIndicatorVisible___C-i5B {\n opacity: 1;\n}\n\n.styles-module__connectionIndicatorConnected___IY8pR {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__connectionPulse___-Zycw 2.5s ease-in-out infinite;\n}\n\n.styles-module__connectionIndicatorDisconnected___kmpaZ {\n background-color: var(--ui-sniper-color-red);\n animation: none;\n}\n\n.styles-module__connectionIndicatorConnecting___QmSLH {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__connectionPulse___-Zycw 1s ease-in-out infinite;\n}\n\n.styles-module__buttonWrapper___rBcdv {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n opacity: 1;\n visibility: visible;\n transform: translateX(-50%) scale(1);\n transition-delay: 0.85s;\n}\n.styles-module__buttonWrapper___rBcdv:has(.styles-module__controlButton___8Q0jc:disabled):hover .styles-module__buttonTooltip___Burd9 {\n opacity: 0;\n visibility: hidden;\n}\n\n.styles-module__tooltipsInSession___-0lHH .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transition-delay: 0s;\n}\n\n.styles-module__sendButtonWrapper___UUxG6 {\n width: 0;\n opacity: 0;\n overflow: hidden;\n pointer-events: none;\n margin-left: -0.375rem;\n transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1), margin 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6 .styles-module__controlButton___8Q0jc {\n transform: scale(0.8);\n transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU {\n width: 34px;\n opacity: 1;\n overflow: visible;\n pointer-events: auto;\n margin-left: 0;\n}\n.styles-module__sendButtonWrapper___UUxG6.styles-module__sendButtonVisible___WPSQU .styles-module__controlButton___8Q0jc {\n transform: scale(1);\n}\n\n.styles-module__buttonTooltip___Burd9 {\n position: absolute;\n bottom: calc(100% + 14px);\n left: 50%;\n transform: translateX(-50%) scale(0.95);\n padding: 6px 10px;\n background: #1a1a1a;\n color: rgba(255, 255, 255, 0.9);\n font-size: 12px;\n font-weight: 500;\n border-radius: 8px;\n white-space: nowrap;\n opacity: 0;\n visibility: hidden;\n pointer-events: none;\n z-index: 100001;\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);\n transition: opacity 0.135s ease, transform 0.135s ease, visibility 0.135s ease;\n}\n.styles-module__buttonTooltip___Burd9::after {\n content: "";\n position: absolute;\n top: calc(100% - 4px);\n left: 50%;\n transform: translateX(-50%) rotate(45deg);\n width: 8px;\n height: 8px;\n background: #1a1a1a;\n border-radius: 0 0 2px 0;\n}\n\n.styles-module__shortcut___lEAQk {\n margin-left: 4px;\n opacity: 0.5;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9 {\n bottom: auto;\n top: calc(100% + 14px);\n transform: translateX(-50%) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonTooltip___Burd9::after {\n top: -4px;\n bottom: auto;\n border-radius: 2px 0 0 0;\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapper___rBcdv:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-50%) scale(1);\n}\n\n.styles-module__tooltipsHidden___VtLJG .styles-module__buttonTooltip___Burd9 {\n opacity: 0 !important;\n visibility: hidden !important;\n transition: none !important;\n}\n\n.styles-module__tooltipVisible___0jcCv,\n.styles-module__tooltipsHidden___VtLJG .styles-module__tooltipVisible___0jcCv {\n opacity: 1 !important;\n visibility: visible !important;\n transform: translateX(-50%) scale(1) !important;\n transition-delay: 0s !important;\n}\n\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9::after {\n left: 16px;\n}\n.styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignLeft___myzIp:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(-12px) scale(1);\n}\n\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n left: 50%;\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9::after {\n left: auto;\n right: 8px;\n}\n.styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(0.95);\n}\n.styles-module__tooltipBelow___m6ats .styles-module__buttonWrapperAlignRight___HCQFR:hover .styles-module__buttonTooltip___Burd9 {\n transform: translateX(calc(-100% + 12px)) scale(1);\n}\n\n.styles-module__divider___c--s1 {\n width: 1px;\n height: 12px;\n background: rgba(255, 255, 255, 0.15);\n margin: 0 0.125rem;\n}\n\n.styles-module__overlay___Q1O9y {\n position: fixed;\n inset: 0;\n z-index: 99997;\n pointer-events: none;\n}\n.styles-module__overlay___Q1O9y > * {\n pointer-events: auto;\n}\n\n.styles-module__hoverHighlight___ogakW {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-accent) 50%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-accent) 4%, transparent);\n pointer-events: none !important;\n box-sizing: border-box;\n will-change: opacity;\n contain: layout style;\n}\n.styles-module__hoverHighlight___ogakW.styles-module__enter___WFIki {\n animation: styles-module__hoverHighlightIn___6WYHY 0.12s ease-out forwards;\n}\n\n.styles-module__multiSelectOutline___cSJ-m {\n position: fixed;\n border: 2px dashed color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__multiSelectOutline___cSJ-m.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__singleSelectOutline___QhX-O {\n position: fixed;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-blue) 60%, transparent);\n border-radius: 4px;\n pointer-events: none !important;\n background-color: color-mix(in srgb, var(--ui-sniper-color-blue) 5%, transparent);\n box-sizing: border-box;\n will-change: opacity;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__enter___WFIki {\n animation: styles-module__fadeIn___b9qmf 0.15s ease-out forwards;\n}\n.styles-module__singleSelectOutline___QhX-O.styles-module__exit___fyOJ0 {\n animation: styles-module__fadeOut___6Ut6- 0.15s ease-out forwards;\n}\n\n.styles-module__hoverTooltip___bvLk7 {\n position: fixed;\n font-size: 0.6875rem;\n font-weight: 500;\n color: #fff;\n background: rgba(0, 0, 0, 0.85);\n padding: 0.35rem 0.6rem;\n border-radius: 0.375rem;\n pointer-events: none !important;\n white-space: nowrap;\n max-width: 280px;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.styles-module__hoverTooltip___bvLk7.styles-module__enter___WFIki {\n animation: styles-module__hoverTooltipIn___FYGQx 0.1s ease-out forwards;\n}\n\n.styles-module__hoverReactPath___gx1IJ {\n font-size: 0.625rem;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.15rem;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__hoverElementName___QMLMl {\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markersLayer___-25j1 {\n position: absolute;\n top: 0;\n left: 0;\n right: 0;\n height: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__markersLayer___-25j1 > * {\n pointer-events: auto;\n}\n\n.styles-module__fixedMarkersLayer___ffyX6 {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__fixedMarkersLayer___ffyX6 > * {\n pointer-events: auto;\n}\n\n.styles-module__marker___6sQrs {\n position: absolute;\n width: 22px;\n height: 22px;\n background: var(--ui-sniper-color-blue);\n color: white;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 0.6875rem;\n font-weight: 600;\n transform: translate(-50%, -50%) scale(1);\n opacity: 1;\n cursor: pointer;\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.04);\n user-select: none;\n will-change: transform, opacity;\n contain: layout style;\n z-index: 1;\n}\n.styles-module__marker___6sQrs:hover {\n z-index: 2;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7) {\n transition: background-color 0.15s ease, transform 0.1s ease;\n}\n.styles-module__marker___6sQrs.styles-module__enter___WFIki {\n animation: styles-module__markerIn___5FaAP 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;\n}\n.styles-module__marker___6sQrs.styles-module__exit___fyOJ0 {\n animation: styles-module__markerOut___GU5jX 0.2s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs.styles-module__clearing___FQ--7 {\n animation: styles-module__markerOut___GU5jX 0.15s ease-out both;\n pointer-events: none;\n}\n.styles-module__marker___6sQrs:not(.styles-module__enter___WFIki):not(.styles-module__exit___fyOJ0):not(.styles-module__clearing___FQ--7):hover {\n transform: translate(-50%, -50%) scale(1.1);\n}\n.styles-module__marker___6sQrs.styles-module__pending___2IHLC {\n position: fixed;\n background-color: var(--ui-sniper-color-blue);\n cursor: default;\n}\n.styles-module__marker___6sQrs.styles-module__fixed___dBMHC {\n position: fixed;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz {\n background-color: var(--ui-sniper-color-green);\n width: 26px;\n height: 26px;\n border-radius: 6px;\n font-size: 0.75rem;\n}\n.styles-module__marker___6sQrs.styles-module__multiSelect___YWiuz.styles-module__pending___2IHLC {\n background-color: var(--ui-sniper-color-green);\n}\n.styles-module__marker___6sQrs.styles-module__hovered___ZgXIy {\n background-color: var(--ui-sniper-color-red);\n}\n\n.styles-module__renumber___nCTxD {\n display: block;\n animation: styles-module__renumberRoll___Wgbq3 0.2s ease-out;\n}\n\n@keyframes styles-module__renumberRoll___Wgbq3 {\n 0% {\n transform: translateX(-40%);\n opacity: 0;\n }\n 100% {\n transform: translateX(0);\n opacity: 1;\n }\n}\n.styles-module__markerTooltip___aLJID {\n position: absolute;\n top: calc(100% + 10px);\n left: 50%;\n transform: translateX(-50%) scale(0.909);\n z-index: 100002;\n background: #1a1a1a;\n padding: 8px 0.75rem;\n border-radius: 0.75rem;\n font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;\n font-weight: 400;\n color: #fff;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n min-width: 120px;\n max-width: 200px;\n pointer-events: none;\n cursor: default;\n}\n.styles-module__markerTooltip___aLJID.styles-module__enter___WFIki {\n animation: styles-module__tooltipIn___0N31w 0.1s ease-out forwards;\n}\n\n.styles-module__markerQuote___FHmrz {\n display: block;\n font-size: 12px;\n font-style: italic;\n color: rgba(255, 255, 255, 0.6);\n margin-bottom: 0.3125rem;\n line-height: 1.4;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.styles-module__markerNote___QkrrS {\n display: block;\n font-size: 13px;\n font-weight: 400;\n line-height: 1.4;\n color: #fff;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n padding-bottom: 2px;\n}\n\n.styles-module__markerHint___2iF-6 {\n display: block;\n font-size: 0.625rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.6);\n margin-top: 0.375rem;\n white-space: nowrap;\n}\n\n.styles-module__settingsPanel___OxX3Y {\n position: absolute;\n right: 5px;\n bottom: calc(100% + 0.5rem);\n z-index: 1;\n overflow: hidden;\n background: #1c1c1c;\n border-radius: 1rem;\n padding: 13px 0 16px;\n min-width: 205px;\n cursor: default;\n opacity: 1;\n box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);\n transition: background-color 0.25s ease, box-shadow 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y::before, .styles-module__settingsPanel___OxX3Y::after {\n content: "";\n position: absolute;\n top: 0;\n bottom: 0;\n width: 16px;\n z-index: 2;\n pointer-events: none;\n}\n.styles-module__settingsPanel___OxX3Y::before {\n left: 0;\n background: linear-gradient(to right, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y::after {\n right: 0;\n background: linear-gradient(to left, #1c1c1c 0%, transparent 100%);\n}\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsHeader___pwDY9,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrand___0gJeM,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsBrandSlash___uTG18,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsVersion___TUcFq,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsSection___m-YM2,\n.styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleButton___FMKfw,\n.styles-module__settingsPanel___OxX3Y .styles-module__cycleDot___nPgLY,\n.styles-module__settingsPanel___OxX3Y .styles-module__dropdownButton___16NPz,\n.styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa,\n.styles-module__settingsPanel___OxX3Y .styles-module__customCheckbox___U39ax,\n.styles-module__settingsPanel___OxX3Y .styles-module__sliderLabel___U8sPr,\n.styles-module__settingsPanel___OxX3Y .styles-module__slider___GLdxp,\n.styles-module__settingsPanel___OxX3Y .styles-module__themeToggle___2rUjA {\n transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__enter___WFIki {\n opacity: 1;\n transform: translateY(0) scale(1);\n filter: blur(0px);\n transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;\n}\n.styles-module__settingsPanel___OxX3Y.styles-module__exit___fyOJ0 {\n opacity: 0;\n transform: translateY(8px) scale(0.95);\n filter: blur(5px);\n pointer-events: none;\n transition: opacity 0.1s ease, transform 0.1s ease, filter 0.1s ease;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y {\n background: #1a1a1a;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.6);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12 {\n color: rgba(255, 255, 255, 0.85);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12:hover {\n background: rgba(255, 255, 255, 0.1);\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.15);\n color: #fff;\n}\n[data-ui-sniper-theme=dark] .styles-module__settingsPanel___OxX3Y .styles-module__toggleLabel___Xm8Aa {\n color: rgba(255, 255, 255, 0.85);\n}\n\n.styles-module__settingsPanelContainer___Xksv8 {\n overflow: visible;\n position: relative;\n display: flex;\n padding: 0 1rem;\n}\n\n.styles-module__settingsPage___6YfHH {\n min-width: 100%;\n flex-shrink: 0;\n transition: transform 0.2s ease, opacity 0.2s ease;\n transition-delay: 0s;\n opacity: 1;\n}\n\n.styles-module__settingsPage___6YfHH.styles-module__slideLeft___Ps01J {\n transform: translateX(-24px);\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6 {\n position: absolute;\n top: 0;\n left: 24px;\n width: 100%;\n height: 100%;\n padding: 3px 1rem 0;\n box-sizing: border-box;\n display: flex;\n flex-direction: column;\n transition: transform 0.2s ease, opacity 0.2s ease;\n opacity: 0;\n pointer-events: none;\n}\n\n.styles-module__automationsPage___uvCq6.styles-module__slideIn___4-qXe {\n transform: translateX(-24px);\n opacity: 1;\n pointer-events: auto;\n}\n\n.styles-module__settingsNavLink___wCzJt {\n display: flex;\n align-items: center;\n justify-content: space-between;\n width: 100%;\n padding: 0;\n border: none;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(255, 255, 255, 0.9);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover {\n color: rgba(0, 0, 0, 0.8);\n}\n.styles-module__settingsNavLink___wCzJt svg {\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__settingsNavLink___wCzJt:hover svg {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt svg {\n color: rgba(0, 0, 0, 0.25);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsNavLink___wCzJt:hover svg {\n color: rgba(0, 0, 0, 0.8);\n}\n\n.styles-module__settingsNavLinkRight___ZWwhj {\n display: flex;\n align-items: center;\n gap: 6px;\n}\n\n.styles-module__mcpNavIndicator___cl9pO {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpNavIndicator___cl9pO.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s ease-in-out infinite;\n}\n\n.styles-module__settingsBackButton___bIe2j {\n display: flex;\n align-items: center;\n gap: 4px;\n padding: 6px 0 12px 0;\n margin: -6px 0 0.5rem 0;\n border: none;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n border-radius: 0;\n background: transparent;\n font-family: inherit;\n font-size: 0.8125rem;\n font-weight: 500;\n letter-spacing: -0.15px;\n color: #fff;\n cursor: pointer;\n transition: transform 0.12s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j svg {\n opacity: 0.4;\n flex-shrink: 0;\n transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.32, 0.72, 0, 1);\n}\n.styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsBackButton___bIe2j:hover svg {\n opacity: 1;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j {\n color: rgba(0, 0, 0, 0.85);\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsBackButton___bIe2j:hover {\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__automationHeader___InP0r {\n display: flex;\n align-items: center;\n gap: 0.125rem;\n font-size: 0.8125rem;\n font-weight: 400;\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__automationHeader___InP0r {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__automationDescription___NKlmo {\n font-size: 0.6875rem;\n font-weight: 300;\n color: rgba(255, 255, 255, 0.5);\n margin-top: 2px;\n line-height: 14px;\n}\n[data-ui-sniper-theme=light] .styles-module__automationDescription___NKlmo {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__learnMoreLink___8xv-x {\n color: rgba(255, 255, 255, 0.8);\n text-decoration: underline dotted;\n text-decoration-color: rgba(255, 255, 255, 0.2);\n text-underline-offset: 2px;\n transition: color 0.15s ease;\n}\n.styles-module__learnMoreLink___8xv-x:hover {\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x {\n color: rgba(0, 0, 0, 0.6);\n text-decoration-color: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__learnMoreLink___8xv-x:hover {\n color: rgba(0, 0, 0, 0.85);\n}\n\n.styles-module__autoSendRow___UblX5 {\n display: flex;\n align-items: center;\n gap: 8px;\n}\n\n.styles-module__autoSendLabel___icDc2 {\n font-size: 0.6875rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n transition: color 0.15s ease;\n}\n.styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: #66b8ff;\n color: color(display-p3 0.4 0.72 1);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2 {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__autoSendLabel___icDc2.styles-module__active___-zoN6 {\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__webhookUrlInput___2375C {\n display: block;\n width: 100%;\n flex: 1;\n min-height: 60px;\n box-sizing: border-box;\n margin-top: 11px;\n padding: 8px 10px;\n border: 1px solid rgba(255, 255, 255, 0.1);\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.03);\n font-family: inherit;\n font-size: 0.75rem;\n font-weight: 400;\n color: #fff;\n outline: none;\n resize: none;\n user-select: text;\n transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;\n}\n.styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(255, 255, 255, 0.3);\n}\n.styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C {\n border-color: rgba(0, 0, 0, 0.1);\n background: rgba(0, 0, 0, 0.03);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C::placeholder {\n color: rgba(0, 0, 0, 0.3);\n}\n[data-ui-sniper-theme=light] .styles-module__webhookUrlInput___2375C:focus {\n border-color: rgba(0, 0, 0, 0.25);\n background: rgba(0, 0, 0, 0.05);\n}\n\n.styles-module__settingsHeader___pwDY9 {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n margin-bottom: 0.5rem;\n padding-bottom: 9px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.07);\n}\n\n.styles-module__settingsBrand___0gJeM {\n font-size: 0.8125rem;\n font-weight: 600;\n letter-spacing: -0.0094em;\n color: #fff;\n text-decoration: none;\n}\n\n.styles-module__settingsBrandSlash___uTG18 {\n color: var(--ui-sniper-color-accent);\n transition: color 0.2s ease;\n}\n\n.styles-module__settingsVersion___TUcFq {\n font-size: 11px;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.4);\n margin-left: auto;\n letter-spacing: -0.0094em;\n}\n\n.styles-module__settingsSection___m-YM2 + .styles-module__settingsSection___m-YM2 {\n margin-top: 0.5rem;\n padding-top: 0.5rem;\n border-top: 1px solid rgba(255, 255, 255, 0.07);\n}\n.styles-module__settingsSection___m-YM2.styles-module__settingsSectionExtraPadding___jdhFV {\n padding-top: calc(0.5rem + 4px);\n}\n\n.styles-module__settingsSectionGrow___h-5HZ {\n flex: 1;\n display: flex;\n flex-direction: column;\n}\n\n.styles-module__settingsRow___3sdhc {\n display: flex;\n align-items: center;\n justify-content: space-between;\n min-height: 24px;\n}\n.styles-module__settingsRow___3sdhc.styles-module__settingsRowMarginTop___zA0Sp {\n margin-top: 8px;\n}\n\n.styles-module__dropdownContainer___BVnxe {\n position: relative;\n}\n\n.styles-module__dropdownButton___16NPz {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0.25rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 600;\n color: #fff;\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownButton___16NPz:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownButton___16NPz svg {\n opacity: 0.6;\n}\n\n.styles-module__cycleButton___FMKfw {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n padding: 0;\n border: none;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: #fff;\n cursor: pointer;\n letter-spacing: -0.0094em;\n}\n[data-ui-sniper-theme=light] .styles-module__cycleButton___FMKfw {\n color: rgba(0, 0, 0, 0.85);\n}\n.styles-module__cycleButton___FMKfw:disabled {\n opacity: 0.35;\n cursor: not-allowed;\n}\n\n.styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(255, 255, 255, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__settingsRowDisabled___EgS0V .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.2);\n}\n.styles-module__settingsRowDisabled___EgS0V .styles-module__toggleSwitch___l4Ygm {\n opacity: 0.4;\n cursor: not-allowed;\n}\n\n@keyframes styles-module__cycleTextIn___Q6zJf {\n 0% {\n opacity: 0;\n transform: translateY(-6px);\n }\n 100% {\n opacity: 1;\n transform: translateY(0);\n }\n}\n.styles-module__cycleButtonText___fD1LR {\n display: inline-block;\n animation: styles-module__cycleTextIn___Q6zJf 0.2s ease-out;\n}\n\n.styles-module__cycleDots___LWuoQ {\n display: flex;\n flex-direction: column;\n gap: 2px;\n}\n\n.styles-module__cycleDot___nPgLY {\n width: 3px;\n height: 3px;\n border-radius: 50%;\n background: rgba(255, 255, 255, 0.3);\n transform: scale(0.667);\n transition: background-color 0.25s ease-out, transform 0.25s ease-out;\n}\n.styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: #fff;\n transform: scale(1);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY {\n background: rgba(0, 0, 0, 0.2);\n}\n[data-ui-sniper-theme=light] .styles-module__cycleDot___nPgLY.styles-module__active___-zoN6 {\n background: rgba(0, 0, 0, 0.7);\n}\n\n.styles-module__dropdownMenu___k73ER {\n position: absolute;\n right: 0;\n top: calc(100% + 0.25rem);\n background: #1a1a1a;\n border-radius: 0.5rem;\n padding: 0.25rem;\n min-width: 120px;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);\n z-index: 10;\n animation: styles-module__scaleIn___c-r1K 0.15s ease-out;\n}\n\n.styles-module__dropdownItem___ylsLj {\n width: 100%;\n display: flex;\n align-items: center;\n padding: 0.5rem 0.625rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.8125rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.85);\n cursor: pointer;\n text-align: left;\n transition: background-color 0.15s ease, color 0.15s ease;\n letter-spacing: -0.0094em;\n}\n.styles-module__dropdownItem___ylsLj:hover {\n background: rgba(255, 255, 255, 0.08);\n}\n.styles-module__dropdownItem___ylsLj.styles-module__selected___OwRqP {\n background: rgba(255, 255, 255, 0.12);\n color: #fff;\n font-weight: 600;\n}\n\n.styles-module__settingsLabel___8UjfX {\n font-size: 0.8125rem;\n font-weight: 400;\n letter-spacing: -0.0094em;\n color: rgba(255, 255, 255, 0.5);\n display: flex;\n align-items: center;\n gap: 0.125rem;\n}\n[data-ui-sniper-theme=light] .styles-module__settingsLabel___8UjfX {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__settingsLabelMarker___ewdtV {\n padding-top: 3px;\n margin-bottom: 10px;\n}\n\n.styles-module__settingsOptions___LyrBA {\n display: flex;\n gap: 0.25rem;\n}\n\n.styles-module__settingsOption___UNa12 {\n flex: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 0.25rem;\n padding: 0.375rem 0.5rem;\n border: none;\n border-radius: 0.375rem;\n background: transparent;\n font-size: 0.6875rem;\n font-weight: 500;\n color: rgba(0, 0, 0, 0.7);\n cursor: pointer;\n transition: background-color 0.15s ease, color 0.15s ease;\n}\n.styles-module__settingsOption___UNa12:hover {\n background: rgba(0, 0, 0, 0.05);\n}\n.styles-module__settingsOption___UNa12.styles-module__selected___OwRqP {\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n color: var(--ui-sniper-color-blue);\n}\n\n.styles-module__sliderContainer___ducXj {\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\n.styles-module__slider___GLdxp {\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n height: 4px;\n background: rgba(255, 255, 255, 0.15);\n border-radius: 2px;\n outline: none;\n cursor: pointer;\n}\n.styles-module__slider___GLdxp::-webkit-slider-thumb {\n -webkit-appearance: none;\n appearance: none;\n width: 14px;\n height: 14px;\n background: white;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp::-moz-range-thumb {\n width: 14px;\n height: 14px;\n background: white;\n border: none;\n border-radius: 50%;\n cursor: pointer;\n transition: transform 0.15s ease, box-shadow 0.15s ease;\n box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n}\n.styles-module__slider___GLdxp:hover::-webkit-slider-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n.styles-module__slider___GLdxp:hover::-moz-range-thumb {\n transform: scale(1.15);\n box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);\n}\n\n.styles-module__sliderLabels___FhLDB {\n display: flex;\n justify-content: space-between;\n}\n\n.styles-module__sliderLabel___U8sPr {\n font-size: 0.625rem;\n font-weight: 500;\n color: rgba(255, 255, 255, 0.4);\n cursor: pointer;\n transition: color 0.15s ease;\n}\n.styles-module__sliderLabel___U8sPr:hover {\n color: rgba(255, 255, 255, 0.7);\n}\n.styles-module__sliderLabel___U8sPr.styles-module__active___-zoN6 {\n color: rgba(255, 255, 255, 0.9);\n}\n\n.styles-module__colorOptions___iHCNX {\n display: flex;\n gap: 0.5rem;\n margin-top: 0.375rem;\n margin-bottom: 1px;\n}\n\n.styles-module__colorOption___IodiY {\n display: block;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n border: 2px solid transparent;\n background-color: var(--swatch);\n cursor: pointer;\n transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOption___IodiY {\n background-color: var(--swatch-p3);\n }\n}\n.styles-module__colorOption___IodiY:hover {\n transform: scale(1.15);\n}\n.styles-module__colorOption___IodiY.styles-module__selected___OwRqP {\n transform: scale(0.83);\n}\n\n.styles-module__colorOptionRing___U2xpo {\n display: flex;\n width: 24px;\n height: 24px;\n border: 2px solid transparent;\n border-radius: 50%;\n transition: border-color 0.3s ease;\n}\n.styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch);\n}\n@supports (color: color(display-p3 0 0 0)) {\n .styles-module__colorOptionRing___U2xpo.styles-module__selected___OwRqP {\n border-color: var(--swatch-p3);\n }\n}\n\n.styles-module__settingsToggle___fBrFn {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n cursor: pointer;\n}\n.styles-module__settingsToggle___fBrFn + .styles-module__settingsToggle___fBrFn {\n margin-top: calc(0.5rem + 6px);\n}\n.styles-module__settingsToggle___fBrFn input[type=checkbox] {\n position: absolute;\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__settingsToggle___fBrFn.styles-module__settingsToggleMarginBottom___MZUyF {\n margin-bottom: calc(0.5rem + 6px);\n}\n\n.styles-module__customCheckbox___U39ax {\n position: relative;\n width: 14px;\n height: 14px;\n border: 1px solid rgba(255, 255, 255, 0.2);\n border-radius: 4px;\n background: rgba(255, 255, 255, 0.05);\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n transition: background-color 0.25s ease, border-color 0.25s ease;\n}\n.styles-module__customCheckbox___U39ax svg {\n color: #1a1a1a;\n opacity: 1;\n transition: opacity 0.15s ease;\n}\ninput[type=checkbox]:checked + .styles-module__customCheckbox___U39ax {\n border-color: rgba(255, 255, 255, 0.3);\n background: rgb(255, 255, 255);\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax {\n border: 1px solid rgba(0, 0, 0, 0.15);\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo {\n border-color: #1a1a1a;\n background: #1a1a1a;\n}\n[data-ui-sniper-theme=light] .styles-module__customCheckbox___U39ax.styles-module__checked___mnZLo svg {\n color: #fff;\n}\n\n.styles-module__toggleLabel___Xm8Aa {\n font-size: 0.8125rem;\n font-weight: 400;\n color: rgba(255, 255, 255, 0.5);\n letter-spacing: -0.0094em;\n display: flex;\n align-items: center;\n gap: 0.25rem;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleLabel___Xm8Aa {\n color: rgba(0, 0, 0, 0.5);\n}\n\n.styles-module__toggleSwitch___l4Ygm {\n position: relative;\n display: inline-block;\n width: 24px;\n height: 16px;\n flex-shrink: 0;\n cursor: pointer;\n transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n.styles-module__toggleSwitch___l4Ygm input {\n opacity: 0;\n width: 0;\n height: 0;\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn {\n background-color: var(--ui-sniper-color-blue);\n}\n.styles-module__toggleSwitch___l4Ygm input:checked + .styles-module__toggleSlider___wprIn::before {\n transform: translateX(8px);\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw {\n opacity: 0.4;\n}\n.styles-module__toggleSwitch___l4Ygm.styles-module__disabled___332Jw .styles-module__toggleSlider___wprIn {\n cursor: not-allowed;\n}\n\n.styles-module__toggleSlider___wprIn {\n position: absolute;\n cursor: pointer;\n inset: 0;\n border-radius: 16px;\n background: #484848;\n}\n[data-ui-sniper-theme=light] .styles-module__toggleSlider___wprIn {\n background: #dddddd;\n}\n.styles-module__toggleSlider___wprIn::before {\n content: "";\n position: absolute;\n height: 12px;\n width: 12px;\n left: 2px;\n bottom: 2px;\n background: white;\n border-radius: 50%;\n transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);\n}\n\n@keyframes styles-module__mcpPulse___uNggr {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-green) 0%, transparent);\n }\n}\n@keyframes styles-module__mcpPulseError___fov9B {\n 0% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 50%, transparent);\n }\n 70% {\n box-shadow: 0 0 0 6px color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n 100% {\n box-shadow: 0 0 0 0 color-mix(in srgb, var(--ui-sniper-color-red) 0%, transparent);\n }\n}\n.styles-module__mcpStatusDot___ibgkc {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connecting___uo-CW {\n background-color: var(--ui-sniper-color-yellow);\n animation: styles-module__mcpPulse___uNggr 1.5s infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__connected___7c28g {\n background-color: var(--ui-sniper-color-green);\n animation: styles-module__mcpPulse___uNggr 2.5s ease-in-out infinite;\n}\n.styles-module__mcpStatusDot___ibgkc.styles-module__disconnected___cHPxR {\n background-color: var(--ui-sniper-color-red);\n animation: styles-module__mcpPulseError___fov9B 2s infinite;\n}\n\n.styles-module__drawCanvas___7cG9U {\n position: fixed;\n inset: 0;\n z-index: 99996;\n pointer-events: none !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6 {\n pointer-events: auto !important;\n cursor: crosshair !important;\n}\n.styles-module__drawCanvas___7cG9U.styles-module__active___-zoN6[data-stroke-hover] {\n cursor: pointer !important;\n}\n\n.styles-module__dragSelection___kZLq2 {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 60%, transparent);\n border-radius: 4px;\n background-color: color-mix(in srgb, var(--ui-sniper-color-green) 8%, transparent);\n pointer-events: none;\n z-index: 99997;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n.styles-module__dragCount___KM90j {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n background-color: var(--ui-sniper-color-green);\n color: white;\n font-size: 0.875rem;\n font-weight: 600;\n padding: 0.25rem 0.5rem;\n border-radius: 1rem;\n min-width: 1.5rem;\n text-align: center;\n}\n\n.styles-module__highlightsContainer___-0xzG {\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n z-index: 99996;\n}\n\n.styles-module__selectedElementHighlight___fyVlI {\n position: fixed;\n top: 0;\n left: 0;\n border: 2px solid color-mix(in srgb, var(--ui-sniper-color-green) 50%, transparent);\n border-radius: 4px;\n background: color-mix(in srgb, var(--ui-sniper-color-green) 6%, transparent);\n pointer-events: none;\n will-change: transform, width, height;\n contain: layout style;\n}\n\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__toolbarContainer___dIhma.styles-module__collapsed___Rydsn:hover {\n background: #f5f5f5;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc {\n color: rgba(0, 0, 0, 0.5);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc:hover:not(:disabled):not([data-active=true]):not([data-failed=true]):not([data-auto-sync=true]):not([data-error=true]):not([data-no-hover=true]) {\n background: rgba(0, 0, 0, 0.06);\n color: rgba(0, 0, 0, 0.85);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-active=true] {\n color: var(--ui-sniper-color-blue);\n background: color-mix(in srgb, var(--ui-sniper-color-blue) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-error=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-danger]:hover:not(:disabled):not([data-active=true]):not([data-failed=true]) {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-auto-sync=true] {\n color: var(--ui-sniper-color-green);\n background: transparent;\n}\n[data-ui-sniper-theme=light] .styles-module__controlButton___8Q0jc[data-failed=true] {\n color: var(--ui-sniper-color-red);\n background: color-mix(in srgb, var(--ui-sniper-color-red) 15%, transparent);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9 {\n background: #fff;\n color: rgba(0, 0, 0, 0.85);\n box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);\n}\n[data-ui-sniper-theme=light] .styles-module__buttonTooltip___Burd9::after {\n background: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__divider___c--s1 {\n background: rgba(0, 0, 0, 0.1);\n}\n\n@media (max-width: 768px), (pointer: coarse) {\n .styles-module__toolbarContainer___dIhma {\n bottom: 24px;\n top: auto !important;\n left: 50% !important;\n transform: translateX(-50%) !important;\n width: max-content;\n max-width: 90vw;\n }\n}\n.styles-module__centerCrosshair___UQ3GL {\n position: fixed;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 99998;\n pointer-events: none;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairDot___YjR0R {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 6px;\n height: 6px;\n background-color: var(--ui-sniper-color-accent);\n border-radius: 50%;\n box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineHorizontal___VX9Ks {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 20px;\n height: 2px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}\n.styles-module__centerCrosshair___UQ3GL .styles-module__crosshairLineVertical___ZEZ7X {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n width: 2px;\n height: 20px;\n background-color: var(--ui-sniper-color-accent);\n opacity: 0.5;\n}';
|
|
8416
8429
|
var classNames7 = { "toolbar": "styles-module__toolbar___wNsdK", "markersLayer": "styles-module__markersLayer___-25j1", "fixedMarkersLayer": "styles-module__fixedMarkersLayer___ffyX6", "controlsContent": "styles-module__controlsContent___9GJWU", "disableTransitions": "styles-module__disableTransitions___EopxO", "toolbarContainer": "styles-module__toolbarContainer___dIhma", "entrance": "styles-module__entrance___sgHd8", "toolbarEnter": "styles-module__toolbarEnter___u8RRu", "hiding": "styles-module__hiding___1td44", "toolbarHide": "styles-module__toolbarHide___y8kaT", "collapsed": "styles-module__collapsed___Rydsn", "expanded": "styles-module__expanded___ofKPx", "serverConnected": "styles-module__serverConnected___Gfbou", "toggleContent": "styles-module__toggleContent___0yfyP", "visible": "styles-module__visible___KHwEW", "hidden": "styles-module__hidden___Ae8H4", "badge": "styles-module__badge___2XsgF", "fadeOut": "styles-module__fadeOut___6Ut6-", "badgeEnter": "styles-module__badgeEnter___mVQLj", "controlButton": "styles-module__controlButton___8Q0jc", "statusShowing": "styles-module__statusShowing___te6iu", "buttonBadge": "styles-module__buttonBadge___NeFWb", "mcpIndicator": "styles-module__mcpIndicator___zGJeL", "connected": "styles-module__connected___7c28g", "mcpIndicatorPulseConnected": "styles-module__mcpIndicatorPulseConnected___EDodZ", "connecting": "styles-module__connecting___uo-CW", "mcpIndicatorPulseConnecting": "styles-module__mcpIndicatorPulseConnecting___cCYte", "connectionIndicatorWrapper": "styles-module__connectionIndicatorWrapper___L-e-3", "connectionIndicator": "styles-module__connectionIndicator___afk9p", "connectionIndicatorVisible": "styles-module__connectionIndicatorVisible___C-i5B", "connectionIndicatorConnected": "styles-module__connectionIndicatorConnected___IY8pR", "connectionPulse": "styles-module__connectionPulse___-Zycw", "connectionIndicatorDisconnected": "styles-module__connectionIndicatorDisconnected___kmpaZ", "connectionIndicatorConnecting": "styles-module__connectionIndicatorConnecting___QmSLH", "buttonWrapper": "styles-module__buttonWrapper___rBcdv", "buttonTooltip": "styles-module__buttonTooltip___Burd9", "tooltipsInSession": "styles-module__tooltipsInSession___-0lHH", "sendButtonWrapper": "styles-module__sendButtonWrapper___UUxG6", "sendButtonVisible": "styles-module__sendButtonVisible___WPSQU", "shortcut": "styles-module__shortcut___lEAQk", "tooltipBelow": "styles-module__tooltipBelow___m6ats", "tooltipsHidden": "styles-module__tooltipsHidden___VtLJG", "tooltipVisible": "styles-module__tooltipVisible___0jcCv", "buttonWrapperAlignLeft": "styles-module__buttonWrapperAlignLeft___myzIp", "buttonWrapperAlignRight": "styles-module__buttonWrapperAlignRight___HCQFR", "divider": "styles-module__divider___c--s1", "overlay": "styles-module__overlay___Q1O9y", "hoverHighlight": "styles-module__hoverHighlight___ogakW", "enter": "styles-module__enter___WFIki", "hoverHighlightIn": "styles-module__hoverHighlightIn___6WYHY", "multiSelectOutline": "styles-module__multiSelectOutline___cSJ-m", "fadeIn": "styles-module__fadeIn___b9qmf", "exit": "styles-module__exit___fyOJ0", "singleSelectOutline": "styles-module__singleSelectOutline___QhX-O", "hoverTooltip": "styles-module__hoverTooltip___bvLk7", "hoverTooltipIn": "styles-module__hoverTooltipIn___FYGQx", "hoverReactPath": "styles-module__hoverReactPath___gx1IJ", "hoverElementName": "styles-module__hoverElementName___QMLMl", "marker": "styles-module__marker___6sQrs", "clearing": "styles-module__clearing___FQ--7", "markerIn": "styles-module__markerIn___5FaAP", "markerOut": "styles-module__markerOut___GU5jX", "pending": "styles-module__pending___2IHLC", "fixed": "styles-module__fixed___dBMHC", "multiSelect": "styles-module__multiSelect___YWiuz", "hovered": "styles-module__hovered___ZgXIy", "renumber": "styles-module__renumber___nCTxD", "renumberRoll": "styles-module__renumberRoll___Wgbq3", "markerTooltip": "styles-module__markerTooltip___aLJID", "tooltipIn": "styles-module__tooltipIn___0N31w", "markerQuote": "styles-module__markerQuote___FHmrz", "markerNote": "styles-module__markerNote___QkrrS", "markerHint": "styles-module__markerHint___2iF-6", "settingsPanel": "styles-module__settingsPanel___OxX3Y", "settingsHeader": "styles-module__settingsHeader___pwDY9", "settingsBrand": "styles-module__settingsBrand___0gJeM", "settingsBrandSlash": "styles-module__settingsBrandSlash___uTG18", "settingsVersion": "styles-module__settingsVersion___TUcFq", "settingsSection": "styles-module__settingsSection___m-YM2", "settingsLabel": "styles-module__settingsLabel___8UjfX", "cycleButton": "styles-module__cycleButton___FMKfw", "cycleDot": "styles-module__cycleDot___nPgLY", "dropdownButton": "styles-module__dropdownButton___16NPz", "toggleLabel": "styles-module__toggleLabel___Xm8Aa", "customCheckbox": "styles-module__customCheckbox___U39ax", "sliderLabel": "styles-module__sliderLabel___U8sPr", "slider": "styles-module__slider___GLdxp", "themeToggle": "styles-module__themeToggle___2rUjA", "settingsOption": "styles-module__settingsOption___UNa12", "selected": "styles-module__selected___OwRqP", "settingsPanelContainer": "styles-module__settingsPanelContainer___Xksv8", "settingsPage": "styles-module__settingsPage___6YfHH", "slideLeft": "styles-module__slideLeft___Ps01J", "automationsPage": "styles-module__automationsPage___uvCq6", "slideIn": "styles-module__slideIn___4-qXe", "settingsNavLink": "styles-module__settingsNavLink___wCzJt", "settingsNavLinkRight": "styles-module__settingsNavLinkRight___ZWwhj", "mcpNavIndicator": "styles-module__mcpNavIndicator___cl9pO", "mcpPulse": "styles-module__mcpPulse___uNggr", "settingsBackButton": "styles-module__settingsBackButton___bIe2j", "automationHeader": "styles-module__automationHeader___InP0r", "automationDescription": "styles-module__automationDescription___NKlmo", "learnMoreLink": "styles-module__learnMoreLink___8xv-x", "autoSendRow": "styles-module__autoSendRow___UblX5", "autoSendLabel": "styles-module__autoSendLabel___icDc2", "active": "styles-module__active___-zoN6", "webhookUrlInput": "styles-module__webhookUrlInput___2375C", "settingsSectionExtraPadding": "styles-module__settingsSectionExtraPadding___jdhFV", "settingsSectionGrow": "styles-module__settingsSectionGrow___h-5HZ", "settingsRow": "styles-module__settingsRow___3sdhc", "settingsRowMarginTop": "styles-module__settingsRowMarginTop___zA0Sp", "dropdownContainer": "styles-module__dropdownContainer___BVnxe", "settingsRowDisabled": "styles-module__settingsRowDisabled___EgS0V", "toggleSwitch": "styles-module__toggleSwitch___l4Ygm", "cycleButtonText": "styles-module__cycleButtonText___fD1LR", "cycleTextIn": "styles-module__cycleTextIn___Q6zJf", "cycleDots": "styles-module__cycleDots___LWuoQ", "dropdownMenu": "styles-module__dropdownMenu___k73ER", "scaleIn": "styles-module__scaleIn___c-r1K", "dropdownItem": "styles-module__dropdownItem___ylsLj", "settingsLabelMarker": "styles-module__settingsLabelMarker___ewdtV", "settingsOptions": "styles-module__settingsOptions___LyrBA", "sliderContainer": "styles-module__sliderContainer___ducXj", "sliderLabels": "styles-module__sliderLabels___FhLDB", "colorOptions": "styles-module__colorOptions___iHCNX", "colorOption": "styles-module__colorOption___IodiY", "colorOptionRing": "styles-module__colorOptionRing___U2xpo", "settingsToggle": "styles-module__settingsToggle___fBrFn", "settingsToggleMarginBottom": "styles-module__settingsToggleMarginBottom___MZUyF", "checked": "styles-module__checked___mnZLo", "toggleSlider": "styles-module__toggleSlider___wprIn", "disabled": "styles-module__disabled___332Jw", "mcpStatusDot": "styles-module__mcpStatusDot___ibgkc", "disconnected": "styles-module__disconnected___cHPxR", "mcpPulseError": "styles-module__mcpPulseError___fov9B", "drawCanvas": "styles-module__drawCanvas___7cG9U", "dragSelection": "styles-module__dragSelection___kZLq2", "dragCount": "styles-module__dragCount___KM90j", "highlightsContainer": "styles-module__highlightsContainer___-0xzG", "selectedElementHighlight": "styles-module__selectedElementHighlight___fyVlI", "centerCrosshair": "styles-module__centerCrosshair___UQ3GL", "crosshairDot": "styles-module__crosshairDot___YjR0R", "crosshairLineHorizontal": "styles-module__crosshairLineHorizontal___VX9Ks", "crosshairLineVertical": "styles-module__crosshairLineVertical___ZEZ7X", "scaleOut": "styles-module__scaleOut___Wctwz", "slideUp": "styles-module__slideUp___kgD36", "slideDown": "styles-module__slideDown___zcdje" };
|
|
8417
8430
|
if (typeof document !== "undefined") {
|
|
8418
8431
|
let style = document.getElementById("feedback-tool-styles-page-toolbar-css-styles");
|
|
@@ -8852,7 +8865,7 @@ function SettingsPanel({
|
|
|
8852
8865
|
/* @__PURE__ */ jsx15("a", { className: styles_module_default11.settingsBrand, href: "https://hara-xy.com", target: "_blank", rel: "noopener noreferrer", children: /* @__PURE__ */ jsx15("svg", { width: "72", height: "16", viewBox: "0 0 500 151", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx15("text", { x: "10", y: "110", fontFamily: "'Arial Black', 'Impact', sans-serif", fontSize: "105", fontWeight: "900", fontStyle: "italic", letterSpacing: "-2", fill: "currentColor", children: "UI SNIPER" }) }) }),
|
|
8853
8866
|
/* @__PURE__ */ jsxs14("p", { className: styles_module_default11.settingsVersion, children: [
|
|
8854
8867
|
"v",
|
|
8855
|
-
"3.2.
|
|
8868
|
+
"3.2.1"
|
|
8856
8869
|
] }),
|
|
8857
8870
|
/* @__PURE__ */ jsx15(
|
|
8858
8871
|
"button",
|
|
@@ -9186,8 +9199,123 @@ function SettingsPanel({
|
|
|
9186
9199
|
);
|
|
9187
9200
|
}
|
|
9188
9201
|
|
|
9202
|
+
// src/components/page-toolbar-css/help-panel/styles.module.scss
|
|
9203
|
+
var css13 = ".styles-module__helpPanel___8yQgH {\n position: absolute;\n right: 5px;\n bottom: calc(100% + 0.5rem);\n z-index: 1;\n overflow: hidden;\n background: #1c1c1c;\n border-radius: 16px;\n padding: 12px 0;\n width: 100%;\n max-width: 380px;\n min-width: 320px;\n cursor: default;\n opacity: 1;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.08);\n transition: background-color 0.25s ease, box-shadow 0.25s ease;\n}\n.styles-module__helpPanel___8yQgH.styles-module__enter___75xe5 {\n opacity: 1;\n transform: translateY(0) scale(1);\n filter: blur(0px);\n transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;\n}\n.styles-module__helpPanel___8yQgH.styles-module__exit___0Sj9Q {\n opacity: 0;\n transform: translateY(8px) scale(0.95);\n filter: blur(5px);\n pointer-events: none;\n transition: opacity 0.1s ease, transform 0.1s ease, filter 0.1s ease;\n}\n[data-ui-sniper-theme=dark] .styles-module__helpPanel___8yQgH {\n background: #1a1a1a;\n box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);\n}\n\n.styles-module__helpPanelContainer___gEvOn {\n display: flex;\n flex-direction: column;\n max-height: 70vh;\n}\n\n.styles-module__header___ukpzU {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 0 16px 12px;\n border-bottom: 1px solid rgba(255, 255, 255, 0.08);\n}\n[data-ui-sniper-theme=light] .styles-module__header___ukpzU {\n border-bottom-color: rgba(0, 0, 0, 0.08);\n}\n\n.styles-module__title___Oi-AP {\n font-size: 14px;\n font-weight: 600;\n color: #fff;\n letter-spacing: -0.01em;\n}\n[data-ui-sniper-theme=light] .styles-module__title___Oi-AP {\n color: #111;\n}\n\n.styles-module__closeBtn___E3Tfn {\n background: transparent;\n border: none;\n color: rgba(255, 255, 255, 0.4);\n cursor: pointer;\n display: flex;\n align-items: center;\n justify-content: center;\n padding: 4px;\n border-radius: 6px;\n transition: all 0.15s ease;\n}\n.styles-module__closeBtn___E3Tfn:hover {\n background: rgba(255, 255, 255, 0.1);\n color: #fff;\n}\n[data-ui-sniper-theme=light] .styles-module__closeBtn___E3Tfn {\n color: rgba(0, 0, 0, 0.4);\n}\n[data-ui-sniper-theme=light] .styles-module__closeBtn___E3Tfn:hover {\n background: rgba(0, 0, 0, 0.06);\n color: #111;\n}\n\n.styles-module__content___hmu9R {\n display: flex;\n flex-direction: column;\n gap: 12px;\n padding: 12px 16px;\n overflow-y: auto;\n /* Custom Scrollbar */\n}\n.styles-module__content___hmu9R::-webkit-scrollbar {\n width: 6px;\n}\n.styles-module__content___hmu9R::-webkit-scrollbar-track {\n background: transparent;\n}\n.styles-module__content___hmu9R::-webkit-scrollbar-thumb {\n background: rgba(255, 255, 255, 0.1);\n border-radius: 3px;\n}\n[data-ui-sniper-theme=light] .styles-module__content___hmu9R::-webkit-scrollbar-thumb {\n background: rgba(0, 0, 0, 0.1);\n}\n\n.styles-module__card___fuN4Y {\n display: flex;\n flex-direction: column;\n background: rgba(255, 255, 255, 0.03);\n border: 1px solid rgba(255, 255, 255, 0.06);\n border-radius: 12px;\n padding: 12px;\n}\n[data-ui-sniper-theme=light] .styles-module__card___fuN4Y {\n background: rgba(0, 0, 0, 0.02);\n border-color: rgba(0, 0, 0, 0.06);\n}\n\n.styles-module__cardHeader___yL1Y8 {\n display: flex;\n align-items: center;\n gap: 8px;\n margin-bottom: 8px;\n}\n\n.styles-module__iconWrapper___oCsnb {\n display: flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n border-radius: 6px;\n background: rgba(255, 255, 255, 0.08);\n color: var(--ui-sniper-color-accent, #3c82f7);\n}\n[data-ui-sniper-theme=light] .styles-module__iconWrapper___oCsnb {\n background: rgba(0, 0, 0, 0.05);\n}\n\n.styles-module__cardTitle___BKKbp {\n font-size: 13px;\n font-weight: 600;\n color: rgba(255, 255, 255, 0.95);\n}\n[data-ui-sniper-theme=light] .styles-module__cardTitle___BKKbp {\n color: rgba(0, 0, 0, 0.9);\n}\n\n.styles-module__cardBody___DYtqU {\n display: flex;\n flex-direction: column;\n gap: 6px;\n}\n\n.styles-module__textRow___lLzFz {\n font-size: 11.5px;\n line-height: 1.45;\n color: rgba(255, 255, 255, 0.6);\n}\n.styles-module__textRow___lLzFz strong {\n color: rgba(255, 255, 255, 0.85);\n font-weight: 600;\n}\n[data-ui-sniper-theme=light] .styles-module__textRow___lLzFz {\n color: rgba(0, 0, 0, 0.65);\n}\n[data-ui-sniper-theme=light] .styles-module__textRow___lLzFz strong {\n color: rgba(0, 0, 0, 0.85);\n}\n\n[data-ui-sniper-theme=light] .styles-module__helpPanel___8yQgH {\n background: #fff;\n box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);\n}";
|
|
9204
|
+
var classNames13 = { "helpPanel": "styles-module__helpPanel___8yQgH", "enter": "styles-module__enter___75xe5", "exit": "styles-module__exit___0Sj9Q", "helpPanelContainer": "styles-module__helpPanelContainer___gEvOn", "header": "styles-module__header___ukpzU", "title": "styles-module__title___Oi-AP", "closeBtn": "styles-module__closeBtn___E3Tfn", "content": "styles-module__content___hmu9R", "card": "styles-module__card___fuN4Y", "cardHeader": "styles-module__cardHeader___yL1Y8", "iconWrapper": "styles-module__iconWrapper___oCsnb", "cardTitle": "styles-module__cardTitle___BKKbp", "cardBody": "styles-module__cardBody___DYtqU", "textRow": "styles-module__textRow___lLzFz" };
|
|
9205
|
+
if (typeof document !== "undefined") {
|
|
9206
|
+
let style = document.getElementById("feedback-tool-styles-help-panel-styles");
|
|
9207
|
+
if (!style) {
|
|
9208
|
+
style = document.createElement("style");
|
|
9209
|
+
style.id = "feedback-tool-styles-help-panel-styles";
|
|
9210
|
+
document.head.appendChild(style);
|
|
9211
|
+
}
|
|
9212
|
+
style.textContent = css13;
|
|
9213
|
+
}
|
|
9214
|
+
var styles_module_default12 = classNames13;
|
|
9215
|
+
|
|
9216
|
+
// src/components/page-toolbar-css/help-panel/index.tsx
|
|
9217
|
+
import { jsx as jsx16, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
9218
|
+
function HelpPanel({ isVisible, onClose, toolbarNearBottom, isDarkMode }) {
|
|
9219
|
+
return /* @__PURE__ */ jsx16(
|
|
9220
|
+
"div",
|
|
9221
|
+
{
|
|
9222
|
+
className: `${styles_module_default12.helpPanel} ${isVisible ? styles_module_default12.enter : styles_module_default12.exit}`,
|
|
9223
|
+
style: toolbarNearBottom ? { bottom: "auto", top: "calc(100% + 0.5rem)" } : void 0,
|
|
9224
|
+
"data-ui-sniper-help-panel": true,
|
|
9225
|
+
children: /* @__PURE__ */ jsxs15("div", { className: styles_module_default12.helpPanelContainer, children: [
|
|
9226
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.header, children: [
|
|
9227
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.title, children: "How to Use UI Sniper" }),
|
|
9228
|
+
/* @__PURE__ */ jsx16("button", { className: styles_module_default12.closeBtn, onClick: onClose, "aria-label": "Close help", children: /* @__PURE__ */ jsx16(IconXmarkLarge, { size: 16 }) })
|
|
9229
|
+
] }),
|
|
9230
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.content, children: [
|
|
9231
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.card, children: [
|
|
9232
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardHeader, children: [
|
|
9233
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ jsx16(IconTarget, { size: 16 }) }),
|
|
9234
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.cardTitle, children: "Target & Annotate" })
|
|
9235
|
+
] }),
|
|
9236
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardBody, children: [
|
|
9237
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9238
|
+
/* @__PURE__ */ jsx16("strong", { children: "How:" }),
|
|
9239
|
+
" Hover and click any element."
|
|
9240
|
+
] }),
|
|
9241
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9242
|
+
/* @__PURE__ */ jsx16("strong", { children: "Why:" }),
|
|
9243
|
+
" Leave context-aware notes exactly where you spot an issue."
|
|
9244
|
+
] }),
|
|
9245
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9246
|
+
/* @__PURE__ */ jsx16("strong", { children: "Value:" }),
|
|
9247
|
+
" Developers get the exact DOM path, React component name, and an automatic screenshot of the issue."
|
|
9248
|
+
] })
|
|
9249
|
+
] })
|
|
9250
|
+
] }),
|
|
9251
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.card, children: [
|
|
9252
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardHeader, children: [
|
|
9253
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ jsx16(IconTarget, { size: 16 }) }),
|
|
9254
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.cardTitle, children: "X-Ray Mode (Shortcut: X)" })
|
|
9255
|
+
] }),
|
|
9256
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardBody, children: [
|
|
9257
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9258
|
+
/* @__PURE__ */ jsx16("strong", { children: "How:" }),
|
|
9259
|
+
" Click the X-Ray icon or press X."
|
|
9260
|
+
] }),
|
|
9261
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9262
|
+
/* @__PURE__ */ jsx16("strong", { children: "Why:" }),
|
|
9263
|
+
" Reveal the invisible wireframe and bounding boxes of the page."
|
|
9264
|
+
] }),
|
|
9265
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9266
|
+
/* @__PURE__ */ jsx16("strong", { children: "Value:" }),
|
|
9267
|
+
" Instantly spot padding, margin, or alignment anomalies to provide precise layout feedback."
|
|
9268
|
+
] })
|
|
9269
|
+
] })
|
|
9270
|
+
] }),
|
|
9271
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.card, children: [
|
|
9272
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardHeader, children: [
|
|
9273
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ jsx16(IconLayout, { size: 16 }) }),
|
|
9274
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.cardTitle, children: "Layout Mode (Shortcut: L)" })
|
|
9275
|
+
] }),
|
|
9276
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardBody, children: [
|
|
9277
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9278
|
+
/* @__PURE__ */ jsx16("strong", { children: "How:" }),
|
|
9279
|
+
" Click the Layout icon or press L."
|
|
9280
|
+
] }),
|
|
9281
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9282
|
+
/* @__PURE__ */ jsx16("strong", { children: "Why:" }),
|
|
9283
|
+
" Drag, drop, edit text, or draw directly on the screen."
|
|
9284
|
+
] }),
|
|
9285
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9286
|
+
/* @__PURE__ */ jsx16("strong", { children: "Value:" }),
|
|
9287
|
+
" Show the developer *exactly* how a layout should look by mocking it up live, instead of just trying to explain it."
|
|
9288
|
+
] })
|
|
9289
|
+
] })
|
|
9290
|
+
] }),
|
|
9291
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.card, children: [
|
|
9292
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardHeader, children: [
|
|
9293
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.iconWrapper, children: /* @__PURE__ */ jsx16(IconPausePlayAnimated, { size: 16, isPaused: true }) }),
|
|
9294
|
+
/* @__PURE__ */ jsx16("div", { className: styles_module_default12.cardTitle, children: "Freeze Animations (Shortcut: P)" })
|
|
9295
|
+
] }),
|
|
9296
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.cardBody, children: [
|
|
9297
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9298
|
+
/* @__PURE__ */ jsx16("strong", { children: "How:" }),
|
|
9299
|
+
" Click the Pause icon or press P."
|
|
9300
|
+
] }),
|
|
9301
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9302
|
+
/* @__PURE__ */ jsx16("strong", { children: "Why:" }),
|
|
9303
|
+
" Pauses all CSS animations, timeouts, and hover states."
|
|
9304
|
+
] }),
|
|
9305
|
+
/* @__PURE__ */ jsxs15("div", { className: styles_module_default12.textRow, children: [
|
|
9306
|
+
/* @__PURE__ */ jsx16("strong", { children: "Value:" }),
|
|
9307
|
+
" Capture fleeting tooltips, modals, or spinners perfectly in your feedback screenshots without racing the clock."
|
|
9308
|
+
] })
|
|
9309
|
+
] })
|
|
9310
|
+
] })
|
|
9311
|
+
] })
|
|
9312
|
+
] })
|
|
9313
|
+
}
|
|
9314
|
+
);
|
|
9315
|
+
}
|
|
9316
|
+
|
|
9189
9317
|
// src/components/page-toolbar-css/index.tsx
|
|
9190
|
-
import { Fragment as Fragment6, jsx as
|
|
9318
|
+
import { Fragment as Fragment6, jsx as jsx17, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
9191
9319
|
function identifyElementWithReact(element, reactMode = "filtered") {
|
|
9192
9320
|
const { name: elementName, path } = identifyElement(element);
|
|
9193
9321
|
if (reactMode === "off") {
|
|
@@ -9375,6 +9503,7 @@ function PageFeedbackToolbarCSS({
|
|
|
9375
9503
|
const [showSettings, setShowSettings] = useState8(false);
|
|
9376
9504
|
const [showSettingsVisible, setShowSettingsVisible] = useState8(false);
|
|
9377
9505
|
const [showReviewPanel, setShowReviewPanel] = useState8(false);
|
|
9506
|
+
const [showHelpPanel, setShowHelpPanel] = useState8(false);
|
|
9378
9507
|
const [settingsPage, setSettingsPage] = useState8(
|
|
9379
9508
|
"main"
|
|
9380
9509
|
);
|
|
@@ -10585,7 +10714,7 @@ function PageFeedbackToolbarCSS({
|
|
|
10585
10714
|
}
|
|
10586
10715
|
}, [hoveredDrawingIdx, isActive]);
|
|
10587
10716
|
useEffect8(() => {
|
|
10588
|
-
if (!isActive || pendingAnnotation || isDrawMode || isDesignMode || isXRayMode) return;
|
|
10717
|
+
if (!isActive || pendingAnnotation || isDrawMode || isDesignMode || isXRayMode || showReviewPanel) return;
|
|
10589
10718
|
const handleMouseMove = (e) => {
|
|
10590
10719
|
const target = e.composedPath()[0] || e.target;
|
|
10591
10720
|
if (closestCrossingShadow(target, "[data-feedback-toolbar]")) {
|
|
@@ -10610,7 +10739,7 @@ function PageFeedbackToolbarCSS({
|
|
|
10610
10739
|
};
|
|
10611
10740
|
document.addEventListener("mousemove", handleMouseMove);
|
|
10612
10741
|
return () => document.removeEventListener("mousemove", handleMouseMove);
|
|
10613
|
-
}, [isActive, pendingAnnotation, isDrawMode, isDesignMode, effectiveReactMode, drawStrokes]);
|
|
10742
|
+
}, [isActive, pendingAnnotation, isDrawMode, isDesignMode, isXRayMode, effectiveReactMode, drawStrokes, showReviewPanel]);
|
|
10614
10743
|
const startEditAnnotation = useCallback6((annotation) => {
|
|
10615
10744
|
setEditingAnnotation(annotation);
|
|
10616
10745
|
setHoveredMarkerId(null);
|
|
@@ -10769,7 +10898,7 @@ function PageFeedbackToolbarCSS({
|
|
|
10769
10898
|
});
|
|
10770
10899
|
}, [effectiveReactMode]);
|
|
10771
10900
|
useEffect8(() => {
|
|
10772
|
-
if (!isActive || isDrawMode || isDesignMode || isXRayMode) return;
|
|
10901
|
+
if (!isActive || isDrawMode || isDesignMode || isXRayMode || showReviewPanel) return;
|
|
10773
10902
|
const handleClick = (e) => {
|
|
10774
10903
|
if (justFinishedDragRef.current) {
|
|
10775
10904
|
justFinishedDragRef.current = false;
|
|
@@ -10890,7 +11019,8 @@ function PageFeedbackToolbarCSS({
|
|
|
10890
11019
|
editingAnnotation,
|
|
10891
11020
|
settings.blockInteractions,
|
|
10892
11021
|
effectiveReactMode,
|
|
10893
|
-
pendingMultiSelectElements
|
|
11022
|
+
pendingMultiSelectElements,
|
|
11023
|
+
showReviewPanel
|
|
10894
11024
|
]);
|
|
10895
11025
|
useEffect8(() => {
|
|
10896
11026
|
if (!isActive) return;
|
|
@@ -12062,7 +12192,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12062
12192
|
return styles;
|
|
12063
12193
|
};
|
|
12064
12194
|
return createPortal3(
|
|
12065
|
-
/* @__PURE__ */
|
|
12195
|
+
/* @__PURE__ */ jsx17(
|
|
12066
12196
|
UISniperContext.Provider,
|
|
12067
12197
|
{
|
|
12068
12198
|
value: {
|
|
@@ -12081,7 +12211,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12081
12211
|
}
|
|
12082
12212
|
}
|
|
12083
12213
|
},
|
|
12084
|
-
children: /* @__PURE__ */
|
|
12214
|
+
children: /* @__PURE__ */ jsxs16(
|
|
12085
12215
|
"div",
|
|
12086
12216
|
{
|
|
12087
12217
|
ref: portalWrapperRef,
|
|
@@ -12091,7 +12221,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12091
12221
|
"data-ui-sniper-root": "",
|
|
12092
12222
|
suppressHydrationWarning: suppressDevWarnings || void 0,
|
|
12093
12223
|
children: [
|
|
12094
|
-
/* @__PURE__ */
|
|
12224
|
+
/* @__PURE__ */ jsx17(
|
|
12095
12225
|
"div",
|
|
12096
12226
|
{
|
|
12097
12227
|
className: `${styles_module_default6.toolbar}${userClassName ? ` ${userClassName}` : ""}`,
|
|
@@ -12103,7 +12233,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12103
12233
|
right: "auto",
|
|
12104
12234
|
bottom: "auto"
|
|
12105
12235
|
} : void 0,
|
|
12106
|
-
children: /* @__PURE__ */
|
|
12236
|
+
children: /* @__PURE__ */ jsxs16(
|
|
12107
12237
|
"div",
|
|
12108
12238
|
{
|
|
12109
12239
|
className: `${styles_module_default6.toolbarContainer} ${isActive ? styles_module_default6.expanded : styles_module_default6.collapsed} ${showEntranceAnimation ? styles_module_default6.entrance : ""} ${isToolbarHiding ? styles_module_default6.hiding : ""} ${!settings.webhooksEnabled && (isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "")) ? styles_module_default6.serverConnected : ""}`,
|
|
@@ -12121,13 +12251,13 @@ function PageFeedbackToolbarCSS({
|
|
|
12121
12251
|
title: !isActive ? "Start taking notes" : void 0,
|
|
12122
12252
|
style: headless && !isActive ? { display: "none" } : void 0,
|
|
12123
12253
|
children: [
|
|
12124
|
-
!headless && /* @__PURE__ */
|
|
12254
|
+
!headless && /* @__PURE__ */ jsxs16(
|
|
12125
12255
|
"div",
|
|
12126
12256
|
{
|
|
12127
12257
|
className: `${styles_module_default6.toggleContent} ${!isActive ? styles_module_default6.visible : styles_module_default6.hidden}`,
|
|
12128
12258
|
children: [
|
|
12129
|
-
/* @__PURE__ */
|
|
12130
|
-
hasVisibleAnnotations && /* @__PURE__ */
|
|
12259
|
+
/* @__PURE__ */ jsx17(IconListSparkle, { size: 24 }),
|
|
12260
|
+
hasVisibleAnnotations && /* @__PURE__ */ jsx17(
|
|
12131
12261
|
"span",
|
|
12132
12262
|
{
|
|
12133
12263
|
className: `${styles_module_default6.badge} ${isActive ? styles_module_default6.fadeOut : ""} ${showEntranceAnimation ? styles_module_default6.entrance : ""}`,
|
|
@@ -12137,35 +12267,35 @@ function PageFeedbackToolbarCSS({
|
|
|
12137
12267
|
]
|
|
12138
12268
|
}
|
|
12139
12269
|
),
|
|
12140
|
-
/* @__PURE__ */
|
|
12270
|
+
/* @__PURE__ */ jsxs16(
|
|
12141
12271
|
"div",
|
|
12142
12272
|
{
|
|
12143
12273
|
className: `${styles_module_default6.controlsContent} ${isActive ? styles_module_default6.visible : styles_module_default6.hidden} ${toolbarPosition && toolbarPosition.y < 100 ? styles_module_default6.tooltipBelow : ""} ${tooltipsHidden || showSettings ? styles_module_default6.tooltipsHidden : ""} ${tooltipSessionActive ? styles_module_default6.tooltipsInSession : ""}`,
|
|
12144
12274
|
onMouseEnter: handleControlsMouseEnter,
|
|
12145
12275
|
onMouseLeave: handleControlsMouseLeave,
|
|
12146
12276
|
children: [
|
|
12147
|
-
isMobile && !pendingAnnotation && !editingAnnotation && !isDesignMode && !isXRayMode && /* @__PURE__ */
|
|
12148
|
-
/* @__PURE__ */
|
|
12149
|
-
/* @__PURE__ */
|
|
12277
|
+
isMobile && !pendingAnnotation && !editingAnnotation && !isDesignMode && !isXRayMode && /* @__PURE__ */ jsxs16(Fragment6, { children: [
|
|
12278
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12279
|
+
/* @__PURE__ */ jsx17(
|
|
12150
12280
|
"button",
|
|
12151
12281
|
{
|
|
12152
12282
|
className: `${styles_module_default6.controlButton} ${styles_module_default6.snipeButton}`,
|
|
12153
12283
|
onClick: handleSnipeCenterElement,
|
|
12154
12284
|
disabled: !hoverInfo,
|
|
12155
12285
|
"data-active": true,
|
|
12156
|
-
children: /* @__PURE__ */
|
|
12286
|
+
children: /* @__PURE__ */ jsx17(IconTarget, { size: 24 })
|
|
12157
12287
|
}
|
|
12158
12288
|
),
|
|
12159
|
-
/* @__PURE__ */
|
|
12289
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.buttonTooltip, children: "Target Element" })
|
|
12160
12290
|
] }),
|
|
12161
|
-
/* @__PURE__ */
|
|
12291
|
+
/* @__PURE__ */ jsx17("div", { className: styles_module_default6.divider })
|
|
12162
12292
|
] }),
|
|
12163
|
-
/* @__PURE__ */
|
|
12293
|
+
/* @__PURE__ */ jsxs16(
|
|
12164
12294
|
"div",
|
|
12165
12295
|
{
|
|
12166
12296
|
className: `${styles_module_default6.buttonWrapper} ${toolbarPosition && toolbarPosition.x < 120 ? styles_module_default6.buttonWrapperAlignLeft : ""}`,
|
|
12167
12297
|
children: [
|
|
12168
|
-
/* @__PURE__ */
|
|
12298
|
+
/* @__PURE__ */ jsx17(
|
|
12169
12299
|
"button",
|
|
12170
12300
|
{
|
|
12171
12301
|
className: styles_module_default6.controlButton,
|
|
@@ -12175,18 +12305,18 @@ function PageFeedbackToolbarCSS({
|
|
|
12175
12305
|
toggleFreeze();
|
|
12176
12306
|
},
|
|
12177
12307
|
"data-active": isFrozen,
|
|
12178
|
-
children: /* @__PURE__ */
|
|
12308
|
+
children: /* @__PURE__ */ jsx17(IconPausePlayAnimated, { size: 24, isPaused: isFrozen })
|
|
12179
12309
|
}
|
|
12180
12310
|
),
|
|
12181
|
-
/* @__PURE__ */
|
|
12311
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12182
12312
|
isFrozen ? "Unfreeze animations" : "Freeze animations",
|
|
12183
|
-
/* @__PURE__ */
|
|
12313
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "P" })
|
|
12184
12314
|
] })
|
|
12185
12315
|
]
|
|
12186
12316
|
}
|
|
12187
12317
|
),
|
|
12188
|
-
/* @__PURE__ */
|
|
12189
|
-
/* @__PURE__ */
|
|
12318
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12319
|
+
/* @__PURE__ */ jsx17(
|
|
12190
12320
|
"button",
|
|
12191
12321
|
{
|
|
12192
12322
|
className: `${styles_module_default6.controlButton} ${!isDarkMode ? styles_module_default6.light : ""}`,
|
|
@@ -12205,16 +12335,16 @@ function PageFeedbackToolbarCSS({
|
|
|
12205
12335
|
},
|
|
12206
12336
|
"data-active": isDesignMode,
|
|
12207
12337
|
style: isDesignMode && blankCanvas ? { color: "#f97316", background: "rgba(249, 115, 22, 0.25)" } : void 0,
|
|
12208
|
-
children: /* @__PURE__ */
|
|
12338
|
+
children: /* @__PURE__ */ jsx17(IconLayout, { size: 21 })
|
|
12209
12339
|
}
|
|
12210
12340
|
),
|
|
12211
|
-
/* @__PURE__ */
|
|
12341
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12212
12342
|
isDesignMode ? "Exit layout mode" : "Layout mode",
|
|
12213
|
-
/* @__PURE__ */
|
|
12343
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "L" })
|
|
12214
12344
|
] })
|
|
12215
12345
|
] }),
|
|
12216
|
-
/* @__PURE__ */
|
|
12217
|
-
/* @__PURE__ */
|
|
12346
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12347
|
+
/* @__PURE__ */ jsx17(
|
|
12218
12348
|
"button",
|
|
12219
12349
|
{
|
|
12220
12350
|
className: `${styles_module_default6.controlButton} ${!isDarkMode ? styles_module_default6.light : ""}`,
|
|
@@ -12228,16 +12358,16 @@ function PageFeedbackToolbarCSS({
|
|
|
12228
12358
|
setIsXRayMode(!isXRayMode);
|
|
12229
12359
|
},
|
|
12230
12360
|
"data-active": isXRayMode,
|
|
12231
|
-
children: /* @__PURE__ */
|
|
12361
|
+
children: /* @__PURE__ */ jsx17(IconTarget, { size: 21 })
|
|
12232
12362
|
}
|
|
12233
12363
|
),
|
|
12234
|
-
/* @__PURE__ */
|
|
12364
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12235
12365
|
isXRayMode ? "Exit X-Ray mode" : "X-Ray mode",
|
|
12236
|
-
/* @__PURE__ */
|
|
12366
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "X" })
|
|
12237
12367
|
] })
|
|
12238
12368
|
] }),
|
|
12239
|
-
/* @__PURE__ */
|
|
12240
|
-
/* @__PURE__ */
|
|
12369
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12370
|
+
/* @__PURE__ */ jsx17(
|
|
12241
12371
|
"button",
|
|
12242
12372
|
{
|
|
12243
12373
|
className: styles_module_default6.controlButton,
|
|
@@ -12247,16 +12377,16 @@ function PageFeedbackToolbarCSS({
|
|
|
12247
12377
|
setShowMarkers(!showMarkers);
|
|
12248
12378
|
},
|
|
12249
12379
|
disabled: !hasAnnotations || isDesignMode || isXRayMode,
|
|
12250
|
-
children: /* @__PURE__ */
|
|
12380
|
+
children: /* @__PURE__ */ jsx17(IconEyeAnimated, { size: 24, isOpen: showMarkers })
|
|
12251
12381
|
}
|
|
12252
12382
|
),
|
|
12253
|
-
/* @__PURE__ */
|
|
12383
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12254
12384
|
showMarkers ? "Hide your notes" : "Show your notes",
|
|
12255
|
-
/* @__PURE__ */
|
|
12385
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "H" })
|
|
12256
12386
|
] })
|
|
12257
12387
|
] }),
|
|
12258
|
-
/* @__PURE__ */
|
|
12259
|
-
/* @__PURE__ */
|
|
12388
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12389
|
+
/* @__PURE__ */ jsx17(
|
|
12260
12390
|
"button",
|
|
12261
12391
|
{
|
|
12262
12392
|
className: `${styles_module_default6.controlButton} ${copied ? styles_module_default6.statusShowing : ""}`,
|
|
@@ -12267,16 +12397,16 @@ function PageFeedbackToolbarCSS({
|
|
|
12267
12397
|
},
|
|
12268
12398
|
disabled: isDesignMode && blankCanvas ? designPlacements.length === 0 && !rearrangeState?.sections?.length : !hasAnnotations && drawStrokes.length === 0 && designPlacements.length === 0 && !rearrangeState?.sections?.length,
|
|
12269
12399
|
"data-active": copied,
|
|
12270
|
-
children: /* @__PURE__ */
|
|
12400
|
+
children: /* @__PURE__ */ jsx17(IconCopyAnimated, { size: 24, copied, tint: isDesignMode && blankCanvas && (designPlacements.length > 0 || !!rearrangeState?.sections?.length) ? "#f97316" : void 0 })
|
|
12271
12401
|
}
|
|
12272
12402
|
),
|
|
12273
|
-
/* @__PURE__ */
|
|
12403
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12274
12404
|
isDesignMode && blankCanvas ? "Copy layout" : "Copy your notes",
|
|
12275
|
-
/* @__PURE__ */
|
|
12405
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "C" })
|
|
12276
12406
|
] })
|
|
12277
12407
|
] }),
|
|
12278
|
-
hasAnnotations && /* @__PURE__ */
|
|
12279
|
-
/* @__PURE__ */
|
|
12408
|
+
hasAnnotations && /* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12409
|
+
/* @__PURE__ */ jsxs16(
|
|
12280
12410
|
"button",
|
|
12281
12411
|
{
|
|
12282
12412
|
className: `${styles_module_default6.controlButton} ${showReviewPanel ? "" : ""}`,
|
|
@@ -12288,19 +12418,19 @@ function PageFeedbackToolbarCSS({
|
|
|
12288
12418
|
title: "Review annotations",
|
|
12289
12419
|
"aria-label": "Review annotations",
|
|
12290
12420
|
children: [
|
|
12291
|
-
/* @__PURE__ */
|
|
12292
|
-
annotations.length > 0 && /* @__PURE__ */
|
|
12421
|
+
/* @__PURE__ */ jsx17(IconChatEllipsis, { size: 20 }),
|
|
12422
|
+
annotations.length > 0 && /* @__PURE__ */ jsx17("span", { className: styles_module_default6.buttonBadge, children: annotations.length })
|
|
12293
12423
|
]
|
|
12294
12424
|
}
|
|
12295
12425
|
),
|
|
12296
|
-
/* @__PURE__ */
|
|
12426
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.buttonTooltip, children: "Review notes" })
|
|
12297
12427
|
] }),
|
|
12298
|
-
/* @__PURE__ */
|
|
12428
|
+
/* @__PURE__ */ jsxs16(
|
|
12299
12429
|
"div",
|
|
12300
12430
|
{
|
|
12301
12431
|
className: `${styles_module_default6.buttonWrapper} ${styles_module_default6.sendButtonWrapper} ${isActive && !settings.webhooksEnabled && (isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "")) ? styles_module_default6.sendButtonVisible : ""}`,
|
|
12302
12432
|
children: [
|
|
12303
|
-
/* @__PURE__ */
|
|
12433
|
+
/* @__PURE__ */ jsxs16(
|
|
12304
12434
|
"button",
|
|
12305
12435
|
{
|
|
12306
12436
|
className: `${styles_module_default6.controlButton} ${sendState === "sent" || sendState === "failed" ? styles_module_default6.statusShowing : ""}`,
|
|
@@ -12313,8 +12443,8 @@ function PageFeedbackToolbarCSS({
|
|
|
12313
12443
|
"data-no-hover": sendState === "sent" || sendState === "failed",
|
|
12314
12444
|
tabIndex: isValidUrl(settings.webhookUrl) || isValidUrl(webhookUrl || "") ? 0 : -1,
|
|
12315
12445
|
children: [
|
|
12316
|
-
/* @__PURE__ */
|
|
12317
|
-
hasAnnotations && sendState === "idle" && /* @__PURE__ */
|
|
12446
|
+
/* @__PURE__ */ jsx17(IconSendArrow, { size: 24, state: sendState }),
|
|
12447
|
+
hasAnnotations && sendState === "idle" && /* @__PURE__ */ jsx17(
|
|
12318
12448
|
"span",
|
|
12319
12449
|
{
|
|
12320
12450
|
className: styles_module_default6.buttonBadge,
|
|
@@ -12324,15 +12454,15 @@ function PageFeedbackToolbarCSS({
|
|
|
12324
12454
|
]
|
|
12325
12455
|
}
|
|
12326
12456
|
),
|
|
12327
|
-
/* @__PURE__ */
|
|
12457
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12328
12458
|
"Send to AI",
|
|
12329
|
-
/* @__PURE__ */
|
|
12459
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "S" })
|
|
12330
12460
|
] })
|
|
12331
12461
|
]
|
|
12332
12462
|
}
|
|
12333
12463
|
),
|
|
12334
|
-
/* @__PURE__ */
|
|
12335
|
-
/* @__PURE__ */
|
|
12464
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12465
|
+
/* @__PURE__ */ jsx17(
|
|
12336
12466
|
"button",
|
|
12337
12467
|
{
|
|
12338
12468
|
className: styles_module_default6.controlButton,
|
|
@@ -12343,16 +12473,16 @@ function PageFeedbackToolbarCSS({
|
|
|
12343
12473
|
},
|
|
12344
12474
|
disabled: !hasAnnotations && drawStrokes.length === 0 && designPlacements.length === 0 && !rearrangeState?.sections?.length,
|
|
12345
12475
|
"data-danger": true,
|
|
12346
|
-
children: /* @__PURE__ */
|
|
12476
|
+
children: /* @__PURE__ */ jsx17(IconTrashAlt, { size: 24 })
|
|
12347
12477
|
}
|
|
12348
12478
|
),
|
|
12349
|
-
/* @__PURE__ */
|
|
12479
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12350
12480
|
"Clear your notes",
|
|
12351
|
-
/* @__PURE__ */
|
|
12481
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "X" })
|
|
12352
12482
|
] })
|
|
12353
12483
|
] }),
|
|
12354
|
-
/* @__PURE__ */
|
|
12355
|
-
/* @__PURE__ */
|
|
12484
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12485
|
+
/* @__PURE__ */ jsx17(
|
|
12356
12486
|
"button",
|
|
12357
12487
|
{
|
|
12358
12488
|
className: styles_module_default6.controlButton,
|
|
@@ -12360,32 +12490,33 @@ function PageFeedbackToolbarCSS({
|
|
|
12360
12490
|
e.stopPropagation();
|
|
12361
12491
|
hideTooltipsUntilMouseLeave();
|
|
12362
12492
|
if (isDesignMode) closeDesignMode();
|
|
12493
|
+
setShowHelpPanel(false);
|
|
12363
12494
|
setShowSettings(!showSettings);
|
|
12364
12495
|
},
|
|
12365
|
-
children: /* @__PURE__ */
|
|
12496
|
+
children: /* @__PURE__ */ jsx17(IconGear, { size: 24 })
|
|
12366
12497
|
}
|
|
12367
12498
|
),
|
|
12368
|
-
endpoint && connectionStatus !== "disconnected" && /* @__PURE__ */
|
|
12499
|
+
endpoint && connectionStatus !== "disconnected" && /* @__PURE__ */ jsx17(
|
|
12369
12500
|
"span",
|
|
12370
12501
|
{
|
|
12371
12502
|
className: `${styles_module_default6.mcpIndicator} ${styles_module_default6[connectionStatus]} ${showSettings ? styles_module_default6.hidden : ""}`,
|
|
12372
12503
|
title: connectionStatus === "connected" ? "Live AI Connected" : "Connecting to AI..."
|
|
12373
12504
|
}
|
|
12374
12505
|
),
|
|
12375
|
-
/* @__PURE__ */
|
|
12506
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.buttonTooltip, children: "Settings" })
|
|
12376
12507
|
] }),
|
|
12377
|
-
/* @__PURE__ */
|
|
12508
|
+
/* @__PURE__ */ jsx17(
|
|
12378
12509
|
"div",
|
|
12379
12510
|
{
|
|
12380
12511
|
className: styles_module_default6.divider
|
|
12381
12512
|
}
|
|
12382
12513
|
),
|
|
12383
|
-
/* @__PURE__ */
|
|
12514
|
+
/* @__PURE__ */ jsxs16(
|
|
12384
12515
|
"div",
|
|
12385
12516
|
{
|
|
12386
12517
|
className: `${styles_module_default6.buttonWrapper} ${toolbarPosition && typeof window !== "undefined" && toolbarPosition.x > window.innerWidth - 120 ? styles_module_default6.buttonWrapperAlignRight : ""}`,
|
|
12387
12518
|
children: [
|
|
12388
|
-
/* @__PURE__ */
|
|
12519
|
+
/* @__PURE__ */ jsx17(
|
|
12389
12520
|
"button",
|
|
12390
12521
|
{
|
|
12391
12522
|
className: styles_module_default6.controlButton,
|
|
@@ -12394,20 +12525,37 @@ function PageFeedbackToolbarCSS({
|
|
|
12394
12525
|
hideTooltipsUntilMouseLeave();
|
|
12395
12526
|
deactivate();
|
|
12396
12527
|
},
|
|
12397
|
-
children: /* @__PURE__ */
|
|
12528
|
+
children: /* @__PURE__ */ jsx17(IconXmarkLarge, { size: 24 })
|
|
12398
12529
|
}
|
|
12399
12530
|
),
|
|
12400
|
-
/* @__PURE__ */
|
|
12531
|
+
/* @__PURE__ */ jsxs16("span", { className: styles_module_default6.buttonTooltip, children: [
|
|
12401
12532
|
"Close UI Sniper",
|
|
12402
|
-
/* @__PURE__ */
|
|
12533
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.shortcut, children: "Esc" })
|
|
12403
12534
|
] })
|
|
12404
12535
|
]
|
|
12405
12536
|
}
|
|
12406
|
-
)
|
|
12537
|
+
),
|
|
12538
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.buttonWrapper, children: [
|
|
12539
|
+
/* @__PURE__ */ jsx17(
|
|
12540
|
+
"button",
|
|
12541
|
+
{
|
|
12542
|
+
className: styles_module_default6.controlButton,
|
|
12543
|
+
onClick: (e) => {
|
|
12544
|
+
e.stopPropagation();
|
|
12545
|
+
hideTooltipsUntilMouseLeave();
|
|
12546
|
+
if (isDesignMode) closeDesignMode();
|
|
12547
|
+
setShowSettings(false);
|
|
12548
|
+
setShowHelpPanel(!showHelpPanel);
|
|
12549
|
+
},
|
|
12550
|
+
children: /* @__PURE__ */ jsx17(IconHelp, { size: 24 })
|
|
12551
|
+
}
|
|
12552
|
+
),
|
|
12553
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default6.buttonTooltip, children: "Help & Shortcuts" })
|
|
12554
|
+
] })
|
|
12407
12555
|
]
|
|
12408
12556
|
}
|
|
12409
12557
|
),
|
|
12410
|
-
/* @__PURE__ */
|
|
12558
|
+
/* @__PURE__ */ jsx17(
|
|
12411
12559
|
DesignPalette,
|
|
12412
12560
|
{
|
|
12413
12561
|
visible: isDesignMode && isActive,
|
|
@@ -12526,7 +12674,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12526
12674
|
}
|
|
12527
12675
|
}
|
|
12528
12676
|
),
|
|
12529
|
-
/* @__PURE__ */
|
|
12677
|
+
/* @__PURE__ */ jsx17(
|
|
12530
12678
|
SettingsPanel,
|
|
12531
12679
|
{
|
|
12532
12680
|
settings,
|
|
@@ -12542,13 +12690,22 @@ function PageFeedbackToolbarCSS({
|
|
|
12542
12690
|
onSettingsPageChange: setSettingsPage,
|
|
12543
12691
|
onHideToolbar: hideToolbarTemporarily
|
|
12544
12692
|
}
|
|
12693
|
+
),
|
|
12694
|
+
/* @__PURE__ */ jsx17(
|
|
12695
|
+
HelpPanel,
|
|
12696
|
+
{
|
|
12697
|
+
isVisible: showHelpPanel,
|
|
12698
|
+
onClose: () => setShowHelpPanel(false),
|
|
12699
|
+
toolbarNearBottom: !!toolbarPosition && toolbarPosition.y < 230,
|
|
12700
|
+
isDarkMode
|
|
12701
|
+
}
|
|
12545
12702
|
)
|
|
12546
12703
|
]
|
|
12547
12704
|
}
|
|
12548
12705
|
)
|
|
12549
12706
|
}
|
|
12550
12707
|
),
|
|
12551
|
-
showReviewPanel && /* @__PURE__ */
|
|
12708
|
+
showReviewPanel && /* @__PURE__ */ jsx17(
|
|
12552
12709
|
ReviewPanel,
|
|
12553
12710
|
{
|
|
12554
12711
|
annotations: visibleAnnotations,
|
|
@@ -12570,8 +12727,8 @@ function PageFeedbackToolbarCSS({
|
|
|
12570
12727
|
}
|
|
12571
12728
|
}
|
|
12572
12729
|
),
|
|
12573
|
-
/* @__PURE__ */
|
|
12574
|
-
(isDesignMode || designOverlayExiting) && /* @__PURE__ */
|
|
12730
|
+
/* @__PURE__ */ jsx17(XRayOverlay, { isActive: isXRayMode, isDarkMode }),
|
|
12731
|
+
(isDesignMode || designOverlayExiting) && /* @__PURE__ */ jsx17(
|
|
12575
12732
|
"div",
|
|
12576
12733
|
{
|
|
12577
12734
|
className: `${styles_module_default3.blankCanvas} ${canvasReady ? styles_module_default3.visible : ""} ${designInteracting ? styles_module_default3.gridActive : ""}`,
|
|
@@ -12579,10 +12736,10 @@ function PageFeedbackToolbarCSS({
|
|
|
12579
12736
|
"data-feedback-toolbar": true
|
|
12580
12737
|
}
|
|
12581
12738
|
),
|
|
12582
|
-
isDesignMode && blankCanvas && canvasReady && /* @__PURE__ */
|
|
12583
|
-
/* @__PURE__ */
|
|
12584
|
-
/* @__PURE__ */
|
|
12585
|
-
/* @__PURE__ */
|
|
12739
|
+
isDesignMode && blankCanvas && canvasReady && /* @__PURE__ */ jsxs16("div", { className: styles_module_default3.wireframeNotice, "data-feedback-toolbar": true, children: [
|
|
12740
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default3.wireframeOpacityRow, children: [
|
|
12741
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default3.wireframeOpacityLabel, children: "Toggle Opacity" }),
|
|
12742
|
+
/* @__PURE__ */ jsx17(
|
|
12586
12743
|
"input",
|
|
12587
12744
|
{
|
|
12588
12745
|
type: "range",
|
|
@@ -12595,10 +12752,10 @@ function PageFeedbackToolbarCSS({
|
|
|
12595
12752
|
}
|
|
12596
12753
|
)
|
|
12597
12754
|
] }),
|
|
12598
|
-
/* @__PURE__ */
|
|
12599
|
-
/* @__PURE__ */
|
|
12600
|
-
/* @__PURE__ */
|
|
12601
|
-
/* @__PURE__ */
|
|
12755
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default3.wireframeNoticeTitleRow, children: [
|
|
12756
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default3.wireframeNoticeTitle, children: "Wireframe Mode" }),
|
|
12757
|
+
/* @__PURE__ */ jsx17("span", { className: styles_module_default3.wireframeNoticeDivider }),
|
|
12758
|
+
/* @__PURE__ */ jsx17(
|
|
12602
12759
|
"button",
|
|
12603
12760
|
{
|
|
12604
12761
|
className: styles_module_default3.wireframeStartOver,
|
|
@@ -12614,10 +12771,10 @@ function PageFeedbackToolbarCSS({
|
|
|
12614
12771
|
)
|
|
12615
12772
|
] }),
|
|
12616
12773
|
"Drag components onto the canvas.",
|
|
12617
|
-
/* @__PURE__ */
|
|
12774
|
+
/* @__PURE__ */ jsx17("br", {}),
|
|
12618
12775
|
"Copied output will only include the wireframed layout."
|
|
12619
12776
|
] }),
|
|
12620
|
-
(isDesignMode || designOverlayExiting) && /* @__PURE__ */
|
|
12777
|
+
(isDesignMode || designOverlayExiting) && /* @__PURE__ */ jsx17(
|
|
12621
12778
|
DesignMode,
|
|
12622
12779
|
{
|
|
12623
12780
|
placements: designPlacements,
|
|
@@ -12683,7 +12840,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12683
12840
|
}
|
|
12684
12841
|
}
|
|
12685
12842
|
),
|
|
12686
|
-
(isDesignMode || designOverlayExiting) && rearrangeState && /* @__PURE__ */
|
|
12843
|
+
(isDesignMode || designOverlayExiting) && rearrangeState && /* @__PURE__ */ jsx17(
|
|
12687
12844
|
RearrangeOverlay,
|
|
12688
12845
|
{
|
|
12689
12846
|
rearrangeState,
|
|
@@ -12736,7 +12893,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12736
12893
|
}
|
|
12737
12894
|
}
|
|
12738
12895
|
),
|
|
12739
|
-
/* @__PURE__ */
|
|
12896
|
+
/* @__PURE__ */ jsx17(
|
|
12740
12897
|
"canvas",
|
|
12741
12898
|
{
|
|
12742
12899
|
ref: drawCanvasRef,
|
|
@@ -12745,8 +12902,8 @@ function PageFeedbackToolbarCSS({
|
|
|
12745
12902
|
"data-feedback-toolbar": true
|
|
12746
12903
|
}
|
|
12747
12904
|
),
|
|
12748
|
-
/* @__PURE__ */
|
|
12749
|
-
markersVisible && visibleAnnotations.filter((a) => !a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */
|
|
12905
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.markersLayer, "data-feedback-toolbar": true, children: [
|
|
12906
|
+
markersVisible && visibleAnnotations.filter((a) => !a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */ jsx17(
|
|
12750
12907
|
AnnotationMarker,
|
|
12751
12908
|
{
|
|
12752
12909
|
annotation,
|
|
@@ -12769,10 +12926,10 @@ function PageFeedbackToolbarCSS({
|
|
|
12769
12926
|
},
|
|
12770
12927
|
annotation.id
|
|
12771
12928
|
)),
|
|
12772
|
-
markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => !a.isFixed).map((a) => /* @__PURE__ */
|
|
12929
|
+
markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => !a.isFixed).map((a) => /* @__PURE__ */ jsx17(ExitingMarker, { annotation: a }, a.id))
|
|
12773
12930
|
] }),
|
|
12774
|
-
/* @__PURE__ */
|
|
12775
|
-
markersVisible && visibleAnnotations.filter((a) => a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */
|
|
12931
|
+
/* @__PURE__ */ jsxs16("div", { className: styles_module_default6.fixedMarkersLayer, "data-feedback-toolbar": true, children: [
|
|
12932
|
+
markersVisible && visibleAnnotations.filter((a) => a.isFixed).map((annotation, layerIndex, arr) => /* @__PURE__ */ jsx17(
|
|
12776
12933
|
AnnotationMarker,
|
|
12777
12934
|
{
|
|
12778
12935
|
annotation,
|
|
@@ -12795,16 +12952,16 @@ function PageFeedbackToolbarCSS({
|
|
|
12795
12952
|
},
|
|
12796
12953
|
annotation.id
|
|
12797
12954
|
)),
|
|
12798
|
-
markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => a.isFixed).map((a) => /* @__PURE__ */
|
|
12955
|
+
markersVisible && !markersExiting && exitingAnnotationsList.filter((a) => a.isFixed).map((a) => /* @__PURE__ */ jsx17(ExitingMarker, { annotation: a, fixed: true }, a.id))
|
|
12799
12956
|
] }),
|
|
12800
|
-
isActive && /* @__PURE__ */
|
|
12957
|
+
isActive && /* @__PURE__ */ jsxs16(
|
|
12801
12958
|
"div",
|
|
12802
12959
|
{
|
|
12803
12960
|
className: styles_module_default6.overlay,
|
|
12804
12961
|
"data-feedback-toolbar": true,
|
|
12805
12962
|
style: pendingAnnotation || editingAnnotation ? { zIndex: 99999 } : void 0,
|
|
12806
12963
|
children: [
|
|
12807
|
-
hoverInfo?.rect && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */
|
|
12964
|
+
hoverInfo?.rect && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */ jsx17(
|
|
12808
12965
|
"div",
|
|
12809
12966
|
{
|
|
12810
12967
|
className: `${styles_module_default6.hoverHighlight} ${styles_module_default6.enter}`,
|
|
@@ -12821,7 +12978,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12821
12978
|
pendingMultiSelectElements.filter((item) => document.contains(item.element)).map((item, index) => {
|
|
12822
12979
|
const rect = item.element.getBoundingClientRect();
|
|
12823
12980
|
const isMulti = pendingMultiSelectElements.length > 1;
|
|
12824
|
-
return /* @__PURE__ */
|
|
12981
|
+
return /* @__PURE__ */ jsx17(
|
|
12825
12982
|
"div",
|
|
12826
12983
|
{
|
|
12827
12984
|
className: isMulti ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline,
|
|
@@ -12849,7 +13006,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12849
13006
|
if (hoveredTargetElements.length > 0) {
|
|
12850
13007
|
return hoveredTargetElements.filter((el) => document.contains(el)).map((el, index) => {
|
|
12851
13008
|
const rect2 = el.getBoundingClientRect();
|
|
12852
|
-
return /* @__PURE__ */
|
|
13009
|
+
return /* @__PURE__ */ jsx17(
|
|
12853
13010
|
"div",
|
|
12854
13011
|
{
|
|
12855
13012
|
className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
|
|
@@ -12865,7 +13022,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12865
13022
|
});
|
|
12866
13023
|
}
|
|
12867
13024
|
return hoveredAnnotation.elementBoundingBoxes.map(
|
|
12868
|
-
(bb2, index) => /* @__PURE__ */
|
|
13025
|
+
(bb2, index) => /* @__PURE__ */ jsx17(
|
|
12869
13026
|
"div",
|
|
12870
13027
|
{
|
|
12871
13028
|
className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
|
|
@@ -12888,7 +13045,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12888
13045
|
height: hoveredAnnotation.boundingBox.height
|
|
12889
13046
|
};
|
|
12890
13047
|
const isMulti = hoveredAnnotation.isMultiSelect;
|
|
12891
|
-
return /* @__PURE__ */
|
|
13048
|
+
return /* @__PURE__ */ jsx17(
|
|
12892
13049
|
"div",
|
|
12893
13050
|
{
|
|
12894
13051
|
className: `${isMulti ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline} ${styles_module_default6.enter}`,
|
|
@@ -12905,7 +13062,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12905
13062
|
}
|
|
12906
13063
|
);
|
|
12907
13064
|
})(),
|
|
12908
|
-
hoverInfo && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */
|
|
13065
|
+
hoverInfo && !pendingAnnotation && !isScrolling && !isDragging && /* @__PURE__ */ jsxs16(
|
|
12909
13066
|
"div",
|
|
12910
13067
|
{
|
|
12911
13068
|
className: `${styles_module_default6.hoverTooltip} ${styles_module_default6.enter}`,
|
|
@@ -12920,17 +13077,17 @@ function PageFeedbackToolbarCSS({
|
|
|
12920
13077
|
)
|
|
12921
13078
|
},
|
|
12922
13079
|
children: [
|
|
12923
|
-
hoverInfo.reactComponents && /* @__PURE__ */
|
|
12924
|
-
/* @__PURE__ */
|
|
13080
|
+
hoverInfo.reactComponents && /* @__PURE__ */ jsx17("div", { className: styles_module_default6.hoverReactPath, children: hoverInfo.reactComponents }),
|
|
13081
|
+
/* @__PURE__ */ jsx17("div", { className: styles_module_default6.hoverElementName, children: hoverInfo.elementName })
|
|
12925
13082
|
]
|
|
12926
13083
|
}
|
|
12927
13084
|
),
|
|
12928
|
-
pendingAnnotation && /* @__PURE__ */
|
|
13085
|
+
pendingAnnotation && /* @__PURE__ */ jsxs16(Fragment6, { children: [
|
|
12929
13086
|
pendingAnnotation.multiSelectElements?.length ? (
|
|
12930
13087
|
// Cmd+shift+click multi-select: show individual boxes with live positions
|
|
12931
13088
|
pendingAnnotation.multiSelectElements.filter((el) => document.contains(el)).map((el, index) => {
|
|
12932
13089
|
const rect = el.getBoundingClientRect();
|
|
12933
|
-
return /* @__PURE__ */
|
|
13090
|
+
return /* @__PURE__ */ jsx17(
|
|
12934
13091
|
"div",
|
|
12935
13092
|
{
|
|
12936
13093
|
className: `${styles_module_default6.multiSelectOutline} ${pendingExiting ? styles_module_default6.exit : styles_module_default6.enter}`,
|
|
@@ -12950,7 +13107,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12950
13107
|
// Single-click: use live getBoundingClientRect for consistent positioning
|
|
12951
13108
|
(() => {
|
|
12952
13109
|
const rect = pendingAnnotation.targetElement.getBoundingClientRect();
|
|
12953
|
-
return /* @__PURE__ */
|
|
13110
|
+
return /* @__PURE__ */ jsx17(
|
|
12954
13111
|
"div",
|
|
12955
13112
|
{
|
|
12956
13113
|
className: `${styles_module_default6.singleSelectOutline} ${pendingExiting ? styles_module_default6.exit : styles_module_default6.enter}`,
|
|
@@ -12967,7 +13124,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12967
13124
|
})()
|
|
12968
13125
|
) : (
|
|
12969
13126
|
// Drag selection or fallback: use stored boundingBox
|
|
12970
|
-
pendingAnnotation.boundingBox && /* @__PURE__ */
|
|
13127
|
+
pendingAnnotation.boundingBox && /* @__PURE__ */ jsx17(
|
|
12971
13128
|
"div",
|
|
12972
13129
|
{
|
|
12973
13130
|
className: `${pendingAnnotation.isMultiSelect ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline} ${pendingExiting ? styles_module_default6.exit : styles_module_default6.enter}`,
|
|
@@ -12988,8 +13145,8 @@ function PageFeedbackToolbarCSS({
|
|
|
12988
13145
|
(() => {
|
|
12989
13146
|
const markerX = pendingAnnotation.x;
|
|
12990
13147
|
const markerY = pendingAnnotation.isFixed ? pendingAnnotation.y : pendingAnnotation.y - scrollY;
|
|
12991
|
-
return /* @__PURE__ */
|
|
12992
|
-
/* @__PURE__ */
|
|
13148
|
+
return /* @__PURE__ */ jsxs16(Fragment6, { children: [
|
|
13149
|
+
/* @__PURE__ */ jsx17(
|
|
12993
13150
|
PendingMarker,
|
|
12994
13151
|
{
|
|
12995
13152
|
x: markerX,
|
|
@@ -12998,7 +13155,7 @@ function PageFeedbackToolbarCSS({
|
|
|
12998
13155
|
isExiting: pendingExiting
|
|
12999
13156
|
}
|
|
13000
13157
|
),
|
|
13001
|
-
/* @__PURE__ */
|
|
13158
|
+
/* @__PURE__ */ jsx17(
|
|
13002
13159
|
AnnotationPopupCSS,
|
|
13003
13160
|
{
|
|
13004
13161
|
ref: popupRef,
|
|
@@ -13038,14 +13195,14 @@ function PageFeedbackToolbarCSS({
|
|
|
13038
13195
|
] });
|
|
13039
13196
|
})()
|
|
13040
13197
|
] }),
|
|
13041
|
-
editingAnnotation && /* @__PURE__ */
|
|
13198
|
+
editingAnnotation && /* @__PURE__ */ jsxs16(Fragment6, { children: [
|
|
13042
13199
|
editingAnnotation.elementBoundingBoxes?.length ? (
|
|
13043
13200
|
// Cmd+shift+click: show individual element boxes (use live rects when available)
|
|
13044
13201
|
(() => {
|
|
13045
13202
|
if (editingTargetElements.length > 0) {
|
|
13046
13203
|
return editingTargetElements.filter((el) => document.contains(el)).map((el, index) => {
|
|
13047
13204
|
const rect = el.getBoundingClientRect();
|
|
13048
|
-
return /* @__PURE__ */
|
|
13205
|
+
return /* @__PURE__ */ jsx17(
|
|
13049
13206
|
"div",
|
|
13050
13207
|
{
|
|
13051
13208
|
className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
|
|
@@ -13061,7 +13218,7 @@ function PageFeedbackToolbarCSS({
|
|
|
13061
13218
|
});
|
|
13062
13219
|
}
|
|
13063
13220
|
return editingAnnotation.elementBoundingBoxes.map(
|
|
13064
|
-
(bb, index) => /* @__PURE__ */
|
|
13221
|
+
(bb, index) => /* @__PURE__ */ jsx17(
|
|
13065
13222
|
"div",
|
|
13066
13223
|
{
|
|
13067
13224
|
className: `${styles_module_default6.multiSelectOutline} ${styles_module_default6.enter}`,
|
|
@@ -13087,7 +13244,7 @@ function PageFeedbackToolbarCSS({
|
|
|
13087
13244
|
height: editingAnnotation.boundingBox.height
|
|
13088
13245
|
} : null;
|
|
13089
13246
|
if (!bb) return null;
|
|
13090
|
-
return /* @__PURE__ */
|
|
13247
|
+
return /* @__PURE__ */ jsx17(
|
|
13091
13248
|
"div",
|
|
13092
13249
|
{
|
|
13093
13250
|
className: `${editingAnnotation.isMultiSelect ? styles_module_default6.multiSelectOutline : styles_module_default6.singleSelectOutline} ${styles_module_default6.enter}`,
|
|
@@ -13105,7 +13262,7 @@ function PageFeedbackToolbarCSS({
|
|
|
13105
13262
|
);
|
|
13106
13263
|
})()
|
|
13107
13264
|
),
|
|
13108
|
-
/* @__PURE__ */
|
|
13265
|
+
/* @__PURE__ */ jsx17(
|
|
13109
13266
|
AnnotationPopupCSS,
|
|
13110
13267
|
{
|
|
13111
13268
|
ref: editPopupRef,
|
|
@@ -13149,9 +13306,9 @@ function PageFeedbackToolbarCSS({
|
|
|
13149
13306
|
}
|
|
13150
13307
|
)
|
|
13151
13308
|
] }),
|
|
13152
|
-
isDragging && /* @__PURE__ */
|
|
13153
|
-
/* @__PURE__ */
|
|
13154
|
-
/* @__PURE__ */
|
|
13309
|
+
isDragging && /* @__PURE__ */ jsxs16(Fragment6, { children: [
|
|
13310
|
+
/* @__PURE__ */ jsx17("div", { ref: dragRectRef, className: styles_module_default6.dragSelection }),
|
|
13311
|
+
/* @__PURE__ */ jsx17(
|
|
13155
13312
|
"div",
|
|
13156
13313
|
{
|
|
13157
13314
|
ref: highlightsContainerRef,
|
|
@@ -13159,10 +13316,10 @@ function PageFeedbackToolbarCSS({
|
|
|
13159
13316
|
}
|
|
13160
13317
|
)
|
|
13161
13318
|
] }),
|
|
13162
|
-
isMobile && isActive && !pendingAnnotation && !editingAnnotation && !isDrawMode && !isDesignMode && /* @__PURE__ */
|
|
13163
|
-
/* @__PURE__ */
|
|
13164
|
-
/* @__PURE__ */
|
|
13165
|
-
/* @__PURE__ */
|
|
13319
|
+
isMobile && isActive && !pendingAnnotation && !editingAnnotation && !isDrawMode && !isDesignMode && /* @__PURE__ */ jsxs16("div", { className: styles_module_default6.centerCrosshair, "data-feedback-toolbar": true, children: [
|
|
13320
|
+
/* @__PURE__ */ jsx17("div", { className: styles_module_default6.crosshairDot }),
|
|
13321
|
+
/* @__PURE__ */ jsx17("div", { className: styles_module_default6.crosshairLineHorizontal }),
|
|
13322
|
+
/* @__PURE__ */ jsx17("div", { className: styles_module_default6.crosshairLineVertical })
|
|
13166
13323
|
] })
|
|
13167
13324
|
]
|
|
13168
13325
|
}
|
|
@@ -13178,7 +13335,7 @@ function PageFeedbackToolbarCSS({
|
|
|
13178
13335
|
|
|
13179
13336
|
// src/components/profiler/index.tsx
|
|
13180
13337
|
import { Profiler } from "react";
|
|
13181
|
-
import { jsx as
|
|
13338
|
+
import { jsx as jsx18 } from "react/jsx-runtime";
|
|
13182
13339
|
function UISniperProfiler({ id = "ui-sniper-profiler", children }) {
|
|
13183
13340
|
const onRender = (id2, phase, actualDuration, baseDuration, startTime, commitTime) => {
|
|
13184
13341
|
if (typeof window !== "undefined") {
|
|
@@ -13188,7 +13345,7 @@ function UISniperProfiler({ id = "ui-sniper-profiler", children }) {
|
|
|
13188
13345
|
};
|
|
13189
13346
|
}
|
|
13190
13347
|
};
|
|
13191
|
-
return /* @__PURE__ */
|
|
13348
|
+
return /* @__PURE__ */ jsx18(Profiler, { id, onRender, children });
|
|
13192
13349
|
}
|
|
13193
13350
|
export {
|
|
13194
13351
|
AnimatedBunny,
|