diff options
Diffstat (limited to 'renderer/src/styles')
| -rw-r--r-- | renderer/src/styles/globals.css | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/renderer/src/styles/globals.css b/renderer/src/styles/globals.css index 6cf3dc7..20275ae 100644 --- a/renderer/src/styles/globals.css +++ b/renderer/src/styles/globals.css | |||
| @@ -1348,3 +1348,77 @@ html[data-theme="light"] .settings-textarea:focus { | |||
| 1348 | padding-top: 16px; | 1348 | padding-top: 16px; |
| 1349 | border-top: 1px solid var(--border); | 1349 | border-top: 1px solid var(--border); |
| 1350 | } | 1350 | } |
| 1351 | |||
| 1352 | /* MCP Server Card with Tools */ | ||
| 1353 | .mcp-server-card { | ||
| 1354 | display: flex; | ||
| 1355 | flex-direction: column; | ||
| 1356 | padding: 12px; | ||
| 1357 | background: var(--bg-secondary); | ||
| 1358 | border: 1px solid var(--border); | ||
| 1359 | border-radius: 4px; | ||
| 1360 | } | ||
| 1361 | |||
| 1362 | .mcp-server-header { | ||
| 1363 | display: flex; | ||
| 1364 | align-items: center; | ||
| 1365 | justify-content: space-between; | ||
| 1366 | gap: 12px; | ||
| 1367 | } | ||
| 1368 | |||
| 1369 | .mcp-tools-section { | ||
| 1370 | margin-top: 12px; | ||
| 1371 | padding-top: 12px; | ||
| 1372 | border-top: 1px solid var(--border); | ||
| 1373 | } | ||
| 1374 | |||
| 1375 | .mcp-tools-header { | ||
| 1376 | font-size: 11px; | ||
| 1377 | font-weight: 500; | ||
| 1378 | text-transform: uppercase; | ||
| 1379 | letter-spacing: 0.05em; | ||
| 1380 | color: var(--text-secondary); | ||
| 1381 | margin-bottom: 8px; | ||
| 1382 | } | ||
| 1383 | |||
| 1384 | .mcp-tools-list { | ||
| 1385 | display: flex; | ||
| 1386 | flex-direction: column; | ||
| 1387 | gap: 6px; | ||
| 1388 | } | ||
| 1389 | |||
| 1390 | .mcp-tool-item { | ||
| 1391 | display: flex; | ||
| 1392 | align-items: flex-start; | ||
| 1393 | gap: 8px; | ||
| 1394 | font-size: 12px; | ||
| 1395 | cursor: pointer; | ||
| 1396 | } | ||
| 1397 | |||
| 1398 | .mcp-tool-item input[type="checkbox"] { | ||
| 1399 | margin-top: 2px; | ||
| 1400 | cursor: pointer; | ||
| 1401 | } | ||
| 1402 | |||
| 1403 | .mcp-tool-name { | ||
| 1404 | font-family: var(--font-mono, monospace); | ||
| 1405 | color: var(--text-primary); | ||
| 1406 | font-weight: 500; | ||
| 1407 | } | ||
| 1408 | |||
| 1409 | .mcp-tool-desc { | ||
| 1410 | color: var(--text-secondary); | ||
| 1411 | font-size: 11px; | ||
| 1412 | margin-left: 4px; | ||
| 1413 | } | ||
| 1414 | |||
| 1415 | .mcp-tools-empty { | ||
| 1416 | font-size: 11px; | ||
| 1417 | color: var(--text-secondary); | ||
| 1418 | font-style: italic; | ||
| 1419 | margin-top: 8px; | ||
| 1420 | padding: 8px; | ||
| 1421 | background: var(--bg-tertiary); | ||
| 1422 | border-radius: 4px; | ||
| 1423 | text-align: center; | ||
| 1424 | } | ||
