Files
broswer-automation/releases/chrome-extension/latest/chrome-mcp-server-lastest/assets/popup-OnFboBpW.css
nasir@endelospay.com d97cad1736 first commit
2025-08-12 02:54:17 +05:00

1286 lines
26 KiB
CSS

/* 现代化全局样式 */
:root {
/* 字体系统 */
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
font-weight: 400;
/* 颜色系统 */
--primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--primary-color: #667eea;
--primary-dark: #5a67d8;
--secondary-color: #764ba2;
--success-color: #48bb78;
--warning-color: #ed8936;
--error-color: #f56565;
--info-color: #4299e1;
--text-primary: #2d3748;
--text-secondary: #4a5568;
--text-muted: #718096;
--text-light: #a0aec0;
--bg-primary: #ffffff;
--bg-secondary: #f7fafc;
--bg-tertiary: #edf2f7;
--bg-overlay: rgba(255, 255, 255, 0.95);
--border-color: #e2e8f0;
--border-light: #f1f5f9;
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
/* 间距系统 */
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 12px;
--spacing-lg: 16px;
--spacing-xl: 20px;
--spacing-2xl: 24px;
--spacing-3xl: 32px;
/* 圆角系统 */
--radius-sm: 4px;
--radius-md: 6px;
--radius-lg: 8px;
--radius-xl: 12px;
--radius-2xl: 16px;
/* 动画 */
--transition-fast: 0.15s ease;
--transition-normal: 0.3s ease;
--transition-slow: 0.5s ease;
/* 字体渲染优化 */
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
/* 重置样式 */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
width: 400px;
min-height: 500px;
max-height: 600px;
overflow: hidden;
font-family: inherit;
background: var(--bg-secondary);
color: var(--text-primary);
}
#app {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
/* 链接样式 */
a {
color: var(--primary-color);
text-decoration: none;
transition: color var(--transition-fast);
}
a:hover {
color: var(--primary-dark);
}
/* 按钮基础样式重置 */
button {
font-family: inherit;
font-size: inherit;
line-height: inherit;
border: none;
background: none;
cursor: pointer;
transition: all var(--transition-normal);
}
button:disabled {
cursor: not-allowed;
opacity: 0.6;
}
/* 输入框基础样式 */
input,
textarea,
select {
font-family: inherit;
font-size: inherit;
line-height: inherit;
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: var(--spacing-sm) var(--spacing-md);
background: var(--bg-primary);
color: var(--text-primary);
transition: all var(--transition-fast);
}
input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
/* 滚动条样式 */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--bg-tertiary);
border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb {
background: var(--border-color);
border-radius: var(--radius-sm);
transition: background var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}
/* 选择文本样式 */
::selection {
background: rgba(102, 126, 234, 0.2);
color: var(--text-primary);
}
/* 焦点可见性 */
:focus-visible {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
/* 动画关键帧 */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes scaleIn {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}
/* 响应式断点 */
@media (max-width: 420px) {
:root {
--spacing-xs: 3px;
--spacing-sm: 6px;
--spacing-md: 10px;
--spacing-lg: 14px;
--spacing-xl: 18px;
--spacing-2xl: 22px;
--spacing-3xl: 28px;
}
}
/* 高对比度模式支持 */
@media (prefers-contrast: high) {
:root {
--border-color: #000000;
--text-muted: #000000;
}
}
/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
.confirmation-dialog[data-v-a9d7431f] {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
backdrop-filter: blur(8px);
animation: dialogFadeIn-a9d7431f 0.3s ease-out;
}
@keyframes dialogFadeIn-a9d7431f {
from {
opacity: 0;
backdrop-filter: blur(0px);
}
to {
opacity: 1;
backdrop-filter: blur(8px);
}
}
.dialog-content[data-v-a9d7431f] {
background: white;
border-radius: 12px;
padding: 24px;
max-width: 360px;
width: 90%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: dialogSlideIn-a9d7431f 0.3s ease-out;
border: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes dialogSlideIn-a9d7431f {
from {
opacity: 0;
transform: translateY(-30px) scale(0.9);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.dialog-header[data-v-a9d7431f] {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
}
.dialog-icon[data-v-a9d7431f] {
font-size: 24px;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.dialog-title[data-v-a9d7431f] {
font-size: 18px;
font-weight: 600;
color: #2d3748;
margin: 0;
}
.dialog-body[data-v-a9d7431f] {
margin-bottom: 24px;
}
.dialog-message[data-v-a9d7431f] {
font-size: 14px;
color: #4a5568;
margin: 0 0 16px 0;
line-height: 1.6;
}
.dialog-list[data-v-a9d7431f] {
margin: 16px 0;
padding-left: 24px;
background: linear-gradient(135deg, #f7fafc, #edf2f7);
border-radius: 6px;
padding: 12px 12px 12px 32px;
border-left: 3px solid #667eea;
}
.dialog-list li[data-v-a9d7431f] {
font-size: 13px;
color: #718096;
margin-bottom: 6px;
line-height: 1.4;
}
.dialog-list li[data-v-a9d7431f]:last-child {
margin-bottom: 0;
}
.dialog-warning[data-v-a9d7431f] {
font-size: 13px;
color: #e53e3e;
margin: 16px 0 0 0;
padding: 12px;
background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(229, 62, 62, 0.05));
border-radius: 6px;
border-left: 3px solid #e53e3e;
border: 1px solid rgba(245, 101, 101, 0.2);
}
.dialog-actions[data-v-a9d7431f] {
display: flex;
gap: 12px;
justify-content: flex-end;
}
.dialog-button[data-v-a9d7431f] {
padding: 10px 20px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
min-width: 80px;
}
.cancel-button[data-v-a9d7431f] {
background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
color: #4a5568;
border: 1px solid #cbd5e0;
}
.cancel-button[data-v-a9d7431f]:hover {
background: linear-gradient(135deg, #cbd5e0, #a0aec0);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(160, 174, 192, 0.3);
}
.confirm-button[data-v-a9d7431f] {
background: linear-gradient(135deg, #f56565, #e53e3e);
color: white;
border: 1px solid #e53e3e;
}
.confirm-button[data-v-a9d7431f]:hover:not(:disabled) {
background: linear-gradient(135deg, #e53e3e, #c53030);
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(245, 101, 101, 0.4);
}
.confirm-button[data-v-a9d7431f]:disabled {
opacity: 0.7;
cursor: not-allowed;
transform: none;
box-shadow: none;
}
/* 响应式设计 */
@media (max-width: 420px) {
.dialog-content[data-v-a9d7431f] {
padding: 20px;
max-width: 320px;
}
.dialog-header[data-v-a9d7431f] {
gap: 10px;
margin-bottom: 16px;
}
.dialog-icon[data-v-a9d7431f] {
font-size: 20px;
}
.dialog-title[data-v-a9d7431f] {
font-size: 16px;
}
.dialog-message[data-v-a9d7431f] {
font-size: 13px;
}
.dialog-list[data-v-a9d7431f] {
padding: 10px 10px 10px 28px;
}
.dialog-list li[data-v-a9d7431f] {
font-size: 12px;
}
.dialog-warning[data-v-a9d7431f] {
font-size: 12px;
padding: 10px;
}
.dialog-actions[data-v-a9d7431f] {
gap: 8px;
flex-direction: column-reverse;
}
.dialog-button[data-v-a9d7431f] {
width: 100%;
padding: 12px 16px;
}
}
/* 焦点样式 */
.dialog-button[data-v-a9d7431f]:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}
.cancel-button[data-v-a9d7431f]:focus {
box-shadow: 0 0 0 3px rgba(160, 174, 192, 0.3);
}
.confirm-button[data-v-a9d7431f]:focus {
box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.3);
}
.progress-section[data-v-47bf69ec] {
margin-top: 16px;
animation: slideIn-47bf69ec 0.3s ease-out;
}
.progress-indicator[data-v-47bf69ec] {
display: flex;
align-items: center;
gap: 12px;
padding: 16px;
background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
border-radius: 8px;
border-left: 4px solid #667eea;
backdrop-filter: blur(10px);
border: 1px solid rgba(102, 126, 234, 0.2);
}
.spinner[data-v-47bf69ec] {
width: 20px;
height: 20px;
border: 3px solid rgba(102, 126, 234, 0.2);
border-top: 3px solid #667eea;
border-radius: 50%;
animation: spin-47bf69ec 1s linear infinite;
flex-shrink: 0;
}
@keyframes spin-47bf69ec {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.progress-text[data-v-47bf69ec] {
font-size: 14px;
color: #4a5568;
font-weight: 500;
line-height: 1.4;
}
@keyframes slideIn-47bf69ec {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 响应式设计 */
@media (max-width: 420px) {
.progress-indicator[data-v-47bf69ec] {
padding: 12px;
gap: 8px;
}
.spinner[data-v-47bf69ec] {
width: 16px;
height: 16px;
border-width: 2px;
}
.progress-text[data-v-47bf69ec] {
font-size: 13px;
}
}
.model-cache-section[data-v-86f9f65f] {
margin-bottom: 24px;
}
.section-title[data-v-86f9f65f] {
font-size: 16px;
font-weight: 600;
color: #374151;
margin-bottom: 12px;
}
.stats-grid[data-v-86f9f65f] {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-bottom: 16px;
}
.stats-card[data-v-86f9f65f] {
background: white;
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 16px;
}
.stats-header[data-v-86f9f65f] {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}
.stats-label[data-v-86f9f65f] {
font-size: 14px;
font-weight: 500;
color: #64748b;
}
.stats-icon[data-v-86f9f65f] {
padding: 8px;
border-radius: 8px;
width: 36px;
height: 36px;
}
.stats-icon.orange[data-v-86f9f65f] {
background: #fed7aa;
color: #ea580c;
}
.stats-icon.purple[data-v-86f9f65f] {
background: #e9d5ff;
color: #9333ea;
}
.stats-value[data-v-86f9f65f] {
font-size: 30px;
font-weight: 700;
color: #0f172a;
margin: 0;
}
.cache-details[data-v-86f9f65f] {
margin-bottom: 16px;
}
.cache-details-title[data-v-86f9f65f] {
font-size: 14px;
font-weight: 600;
color: #374151;
margin: 0 0 12px 0;
}
.cache-entries[data-v-86f9f65f] {
display: flex;
flex-direction: column;
gap: 8px;
}
.cache-entry[data-v-86f9f65f] {
background: white;
border: 1px solid #e5e7eb;
border-radius: 8px;
padding: 12px;
}
.entry-info[data-v-86f9f65f] {
display: flex;
justify-content: space-between;
align-items: center;
}
.entry-url[data-v-86f9f65f] {
font-weight: 500;
color: #1f2937;
font-size: 14px;
}
.entry-details[data-v-86f9f65f] {
display: flex;
gap: 8px;
align-items: center;
font-size: 12px;
}
.entry-size[data-v-86f9f65f] {
background: #dbeafe;
color: #1e40af;
padding: 2px 6px;
border-radius: 4px;
}
.entry-age[data-v-86f9f65f] {
color: #6b7280;
}
.entry-expired[data-v-86f9f65f] {
background: #fee2e2;
color: #dc2626;
padding: 2px 6px;
border-radius: 4px;
}
.no-cache[data-v-86f9f65f],
.loading-cache[data-v-86f9f65f] {
text-align: center;
color: #6b7280;
padding: 20px;
background: #f8fafc;
border-radius: 8px;
border: 1px solid #e2e8f0;
margin-bottom: 16px;
}
.cache-actions[data-v-86f9f65f] {
display: flex;
flex-direction: column;
gap: 12px;
}
.secondary-button[data-v-86f9f65f] {
background: #f1f5f9;
color: #475569;
border: 1px solid #cbd5e1;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 8px;
width: 100%;
justify-content: center;
user-select: none;
cursor: pointer;
}
.secondary-button[data-v-86f9f65f]:hover:not(:disabled) {
background: #e2e8f0;
border-color: #94a3b8;
}
.secondary-button[data-v-86f9f65f]:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.danger-button[data-v-86f9f65f] {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background: white;
border: 1px solid #d1d5db;
color: #374151;
font-weight: 600;
padding: 12px 16px;
border-radius: 8px;
cursor: pointer;
user-select: none;
transition: all 0.2s ease;
}
.danger-button[data-v-86f9f65f]:hover:not(:disabled) {
border-color: #ef4444;
color: #dc2626;
}
.danger-button[data-v-86f9f65f]:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.popup-container[data-v-e06f416e] {
background: #f1f5f9;
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
display: flex;
flex-direction: column;
overflow: hidden;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.header[data-v-e06f416e] {
flex-shrink: 0;
padding-left: 20px;
}
.header-content[data-v-e06f416e] {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-title[data-v-e06f416e] {
font-size: 24px;
font-weight: 700;
color: #1e293b;
margin: 0;
}
.settings-button[data-v-e06f416e] {
padding: 8px;
border-radius: 50%;
color: #64748b;
background: none;
border: none;
cursor: pointer;
transition: all 0.2s ease;
}
.settings-button[data-v-e06f416e]:hover {
background: #e2e8f0;
color: #1e293b;
}
.content[data-v-e06f416e] {
flex-grow: 1;
padding: 8px 24px;
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}
.content[data-v-e06f416e]::-webkit-scrollbar {
display: none;
}
.status-card[data-v-e06f416e] {
background: white;
border-radius: 16px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}
.status-label[data-v-e06f416e] {
font-size: 14px;
font-weight: 500;
color: #64748b;
margin-bottom: 8px;
}
.status-info[data-v-e06f416e] {
display: flex;
align-items: center;
gap: 8px;
}
.status-dot[data-v-e06f416e] {
height: 8px;
width: 8px;
border-radius: 50%;
}
.status-dot.bg-emerald-500[data-v-e06f416e] {
background-color: #10b981;
}
.status-dot.bg-red-500[data-v-e06f416e] {
background-color: #ef4444;
}
.status-dot.bg-yellow-500[data-v-e06f416e] {
background-color: #eab308;
}
.status-dot.bg-gray-500[data-v-e06f416e] {
background-color: #6b7280;
}
.status-text[data-v-e06f416e] {
font-size: 16px;
font-weight: 600;
color: #1e293b;
}
.model-label[data-v-e06f416e] {
font-size: 14px;
font-weight: 500;
color: #64748b;
margin-bottom: 4px;
}
.model-name[data-v-e06f416e] {
font-weight: 600;
color: #7c3aed;
}
.stats-grid[data-v-e06f416e] {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.stats-card[data-v-e06f416e] {
background: white;
border-radius: 12px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 16px;
}
.stats-header[data-v-e06f416e] {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}
.stats-label[data-v-e06f416e] {
font-size: 14px;
font-weight: 500;
color: #64748b;
}
.stats-icon[data-v-e06f416e] {
padding: 8px;
border-radius: 8px;
}
.stats-icon.violet[data-v-e06f416e] {
background: #ede9fe;
color: #7c3aed;
}
.stats-icon.teal[data-v-e06f416e] {
background: #ccfbf1;
color: #0d9488;
}
.stats-icon.blue[data-v-e06f416e] {
background: #dbeafe;
color: #2563eb;
}
.stats-icon.green[data-v-e06f416e] {
background: #dcfce7;
color: #16a34a;
}
.stats-value[data-v-e06f416e] {
font-size: 30px;
font-weight: 700;
color: #0f172a;
margin: 0;
}
.section[data-v-e06f416e] {
margin-bottom: 24px;
}
.secondary-button[data-v-e06f416e] {
background: #f1f5f9;
color: #475569;
border: 1px solid #cbd5e1;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 8px;
}
.secondary-button[data-v-e06f416e]:hover:not(:disabled) {
background: #e2e8f0;
border-color: #94a3b8;
}
.secondary-button[data-v-e06f416e]:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.primary-button[data-v-e06f416e] {
background: #3b82f6;
color: white;
border: none;
padding: 8px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.primary-button[data-v-e06f416e]:hover {
background: #2563eb;
}
.section-title[data-v-e06f416e] {
font-size: 16px;
font-weight: 600;
color: #374151;
margin-bottom: 12px;
}
.current-model-card[data-v-e06f416e] {
background: linear-gradient(135deg, #faf5ff, #f3e8ff);
border: 1px solid #e9d5ff;
border-radius: 12px;
padding: 16px;
margin-bottom: 16px;
}
.current-model-header[data-v-e06f416e] {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.current-model-label[data-v-e06f416e] {
font-size: 14px;
font-weight: 500;
color: #64748b;
margin: 0;
}
.current-model-badge[data-v-e06f416e] {
background: #8b5cf6;
color: white;
font-size: 12px;
font-weight: 600;
padding: 4px 8px;
border-radius: 6px;
}
.current-model-name[data-v-e06f416e] {
font-size: 16px;
font-weight: 700;
color: #7c3aed;
margin: 0;
}
.model-list[data-v-e06f416e] {
display: flex;
flex-direction: column;
gap: 12px;
}
.model-card[data-v-e06f416e] {
background: white;
border-radius: 12px;
padding: 16px;
cursor: pointer;
border: 1px solid #e5e7eb;
transition: all 0.2s ease;
}
.model-card[data-v-e06f416e]:hover {
border-color: #8b5cf6;
}
.model-card.selected[data-v-e06f416e] {
border: 2px solid #8b5cf6;
background: #faf5ff;
}
.model-card.disabled[data-v-e06f416e] {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
.model-header[data-v-e06f416e] {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.model-info[data-v-e06f416e] {
flex: 1;
}
.model-name[data-v-e06f416e] {
font-weight: 600;
color: #1e293b;
margin: 0 0 4px 0;
}
.model-name.selected-text[data-v-e06f416e] {
color: #7c3aed;
}
.model-description[data-v-e06f416e] {
font-size: 14px;
color: #64748b;
margin: 0;
}
.check-icon[data-v-e06f416e] {
width: 20px;
height: 20px;
flex-shrink: 0;
background: #8b5cf6;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.model-tags[data-v-e06f416e] {
display: flex;
align-items: center;
gap: 8px;
margin-top: 16px;
}
.model-tag[data-v-e06f416e] {
display: inline-flex;
align-items: center;
border-radius: 9999px;
padding: 4px 10px;
font-size: 12px;
font-weight: 500;
}
.model-tag.performance[data-v-e06f416e] {
background: #d1fae5;
color: #065f46;
}
.model-tag.size[data-v-e06f416e] {
background: #ddd6fe;
color: #5b21b6;
}
.model-tag.dimension[data-v-e06f416e] {
background: #e5e7eb;
color: #4b5563;
}
.config-card[data-v-e06f416e] {
background: white;
border-radius: 16px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
}
.semantic-engine-card[data-v-e06f416e] {
background: white;
border-radius: 16px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
}
.semantic-engine-status[data-v-e06f416e] {
display: flex;
flex-direction: column;
gap: 8px;
}
.semantic-engine-button[data-v-e06f416e] {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #8b5cf6;
color: white;
font-weight: 600;
padding: 12px 16px;
border-radius: 8px;
border: none;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.semantic-engine-button[data-v-e06f416e]:hover:not(:disabled) {
background: #7c3aed;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.semantic-engine-button[data-v-e06f416e]:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.status-header[data-v-e06f416e] {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.refresh-status-button[data-v-e06f416e] {
background: none;
border: none;
cursor: pointer;
padding: 4px 8px;
border-radius: 6px;
font-size: 14px;
color: #64748b;
transition: all 0.2s ease;
}
.refresh-status-button[data-v-e06f416e]:hover {
background: #f1f5f9;
color: #374151;
}
.status-timestamp[data-v-e06f416e] {
font-size: 12px;
color: #9ca3af;
margin-top: 4px;
}
.mcp-config-section[data-v-e06f416e] {
border-top: 1px solid #f1f5f9;
}
.mcp-config-header[data-v-e06f416e] {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.mcp-config-label[data-v-e06f416e] {
font-size: 14px;
font-weight: 500;
color: #64748b;
margin: 0;
}
.copy-config-button[data-v-e06f416e] {
background: none;
border: none;
cursor: pointer;
padding: 4px 8px;
border-radius: 6px;
font-size: 14px;
color: #64748b;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 4px;
}
.copy-config-button[data-v-e06f416e]:hover {
background: #f1f5f9;
color: #374151;
}
.mcp-config-content[data-v-e06f416e] {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 12px;
overflow-x: auto;
}
.mcp-config-json[data-v-e06f416e] {
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 12px;
line-height: 1.4;
color: #374151;
margin: 0;
white-space: pre;
overflow-x: auto;
}
.port-section[data-v-e06f416e] {
display: flex;
flex-direction: column;
gap: 8px;
}
.port-label[data-v-e06f416e] {
font-size: 14px;
font-weight: 500;
color: #64748b;
}
.port-input[data-v-e06f416e] {
display: block;
width: 100%;
border-radius: 8px;
border: 1px solid #d1d5db;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
padding: 12px;
font-size: 14px;
background: #f8fafc;
}
.port-input[data-v-e06f416e]:focus {
outline: none;
border-color: #8b5cf6;
box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.connect-button[data-v-e06f416e] {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #8b5cf6;
color: white;
font-weight: 600;
padding: 12px 16px;
border-radius: 8px;
border: none;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.connect-button[data-v-e06f416e]:hover:not(:disabled) {
background: #7c3aed;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.connect-button[data-v-e06f416e]:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.error-card[data-v-e06f416e] {
background: #fef2f2;
border: 1px solid #fecaca;
border-radius: 12px;
padding: 16px;
margin-bottom: 16px;
display: flex;
align-items: flex-start;
gap: 16px;
}
.error-content[data-v-e06f416e] {
flex: 1;
display: flex;
align-items: flex-start;
gap: 12px;
}
.error-icon[data-v-e06f416e] {
font-size: 20px;
flex-shrink: 0;
margin-top: 2px;
}
.error-details[data-v-e06f416e] {
flex: 1;
}
.error-title[data-v-e06f416e] {
font-size: 14px;
font-weight: 600;
color: #dc2626;
margin: 0 0 4px 0;
}
.error-message[data-v-e06f416e] {
font-size: 14px;
color: #991b1b;
margin: 0 0 8px 0;
font-weight: 500;
}
.error-suggestion[data-v-e06f416e] {
font-size: 13px;
color: #7f1d1d;
margin: 0;
line-height: 1.4;
}
.retry-button[data-v-e06f416e] {
display: flex;
align-items: center;
gap: 6px;
background: #dc2626;
color: white;
font-weight: 600;
padding: 8px 16px;
border-radius: 8px;
border: none;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
flex-shrink: 0;
}
.retry-button[data-v-e06f416e]:hover:not(:disabled) {
background: #b91c1c;
}
.retry-button[data-v-e06f416e]:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.danger-button[data-v-e06f416e] {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
background: white;
border: 1px solid #d1d5db;
color: #374151;
font-weight: 600;
padding: 12px 16px;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
margin-top: 16px;
}
.danger-button[data-v-e06f416e]:hover:not(:disabled) {
border-color: #ef4444;
color: #dc2626;
}
.danger-button[data-v-e06f416e]:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.icon-small[data-v-e06f416e] {
width: 14px;
height: 14px;
}
.icon-default[data-v-e06f416e] {
width: 20px;
height: 20px;
}
.icon-medium[data-v-e06f416e] {
width: 24px;
height: 24px;
}
.footer[data-v-e06f416e] {
padding: 16px;
margin-top: auto;
}
.footer-text[data-v-e06f416e] {
text-align: center;
font-size: 12px;
color: #94a3b8;
margin: 0;
}
@media (max-width: 320px) {
.popup-container[data-v-e06f416e] {
width: 100%;
height: 100vh;
border-radius: 0;
}
.header[data-v-e06f416e] {
padding: 24px 20px 12px;
}
.content[data-v-e06f416e] {
padding: 8px 20px;
}
.stats-grid[data-v-e06f416e] {
grid-template-columns: 1fr;
gap: 8px;
}
.config-card[data-v-e06f416e] {
padding: 16px;
gap: 12px;
}
.current-model-card[data-v-e06f416e] {
padding: 12px;
margin-bottom: 12px;
}
.stats-card[data-v-e06f416e] {
padding: 12px;
}
.stats-value[data-v-e06f416e] {
font-size: 24px;
}
}