2026-04-02 20:19:16 +02:00
|
|
|
html, body {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
padding: 0 !important;
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
overflow: hidden !important;
|
|
|
|
|
height: auto !important;
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-02 13:19:59 +02:00
|
|
|
.suggestion-body {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
user-select: none;
|
|
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-tooltip {
|
2026-04-02 20:19:16 +02:00
|
|
|
background: #1e1e1e;
|
|
|
|
|
border: 1px solid #3c3c3c;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 8px 12px;
|
2026-04-02 13:19:59 +02:00
|
|
|
margin: 4px;
|
|
|
|
|
max-width: 400px;
|
2026-04-02 20:19:16 +02:00
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-text {
|
2026-04-02 20:19:16 +02:00
|
|
|
color: #d4d4d4;
|
2026-04-02 13:19:59 +02:00
|
|
|
font-size: 13px;
|
2026-04-02 20:19:16 +02:00
|
|
|
line-height: 1.45;
|
|
|
|
|
margin: 0 0 6px 0;
|
2026-04-02 13:19:59 +02:00
|
|
|
word-wrap: break-word;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-hint {
|
2026-04-02 20:19:16 +02:00
|
|
|
color: #666;
|
2026-04-02 13:19:59 +02:00
|
|
|
font-size: 11px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-04-02 20:19:16 +02:00
|
|
|
gap: 6px;
|
|
|
|
|
border-top: 1px solid #2a2a2a;
|
|
|
|
|
padding-top: 6px;
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
2026-04-02 20:19:16 +02:00
|
|
|
.suggestion-hint kbd {
|
|
|
|
|
background: #2a2a2a;
|
|
|
|
|
border: 1px solid #3c3c3c;
|
2026-04-02 13:19:59 +02:00
|
|
|
border-radius: 3px;
|
2026-04-02 20:19:16 +02:00
|
|
|
padding: 0 4px;
|
|
|
|
|
font-family: inherit;
|
2026-04-02 13:19:59 +02:00
|
|
|
font-size: 10px;
|
2026-04-02 20:19:16 +02:00
|
|
|
font-weight: 600;
|
|
|
|
|
color: #999;
|
|
|
|
|
line-height: 18px;
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-separator {
|
2026-04-02 20:19:16 +02:00
|
|
|
width: 1px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
background: #333;
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-error {
|
2026-04-02 20:19:16 +02:00
|
|
|
border-color: #5c2626;
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-error-text {
|
2026-04-02 20:19:16 +02:00
|
|
|
color: #f48771;
|
2026-04-02 13:19:59 +02:00
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-loading {
|
|
|
|
|
display: flex;
|
2026-04-02 20:19:16 +02:00
|
|
|
gap: 5px;
|
|
|
|
|
padding: 2px 0;
|
|
|
|
|
justify-content: center;
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-dot {
|
2026-04-02 20:19:16 +02:00
|
|
|
width: 4px;
|
|
|
|
|
height: 4px;
|
2026-04-02 13:19:59 +02:00
|
|
|
border-radius: 50%;
|
2026-04-02 20:19:16 +02:00
|
|
|
background: #666;
|
2026-04-02 13:19:59 +02:00
|
|
|
animation: suggestion-pulse 1.2s infinite ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-dot:nth-child(2) {
|
|
|
|
|
animation-delay: 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.suggestion-dot:nth-child(3) {
|
|
|
|
|
animation-delay: 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes suggestion-pulse {
|
|
|
|
|
0%, 80%, 100% {
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
transform: scale(0.8);
|
|
|
|
|
}
|
|
|
|
|
40% {
|
|
|
|
|
opacity: 1;
|
2026-04-02 20:19:16 +02:00
|
|
|
transform: scale(1.1);
|
2026-04-02 13:19:59 +02:00
|
|
|
}
|
|
|
|
|
}
|