@yesdgq/claude-buddy 1.1.2000 → 1.1.3010
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/assets/config.html +59 -45
- package/assets/config.js +645 -47
- package/assets/editor.css +219 -0
- package/assets/editor.html +60 -0
- package/assets/editor.js +299 -0
- package/assets/images/workbuddy.png +0 -0
- package/assets/libs/style.css +318 -16
- package/dist/index.js +1 -1
- package/package.json +5 -4
package/assets/libs/style.css
CHANGED
|
@@ -583,6 +583,11 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
583
583
|
border-radius: var(--radius-sm);
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
+
.cli-btn .cli-icon-workbuddy {
|
|
587
|
+
width: 20px;
|
|
588
|
+
height: 20px;
|
|
589
|
+
}
|
|
590
|
+
|
|
586
591
|
.cli-btn:hover {
|
|
587
592
|
color: var(--text-primary);
|
|
588
593
|
background-color: var(--bg-hover);
|
|
@@ -802,6 +807,65 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
802
807
|
font-size: 0.875rem;
|
|
803
808
|
}
|
|
804
809
|
|
|
810
|
+
.config-file-list {
|
|
811
|
+
display: grid;
|
|
812
|
+
gap: var(--space-sm);
|
|
813
|
+
margin-bottom: var(--space-lg);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.config-file-item {
|
|
817
|
+
display: flex;
|
|
818
|
+
align-items: center;
|
|
819
|
+
width: 100%;
|
|
820
|
+
min-height: 42px;
|
|
821
|
+
gap: var(--space-sm);
|
|
822
|
+
padding: 9px 12px;
|
|
823
|
+
border: 1px solid var(--border-default);
|
|
824
|
+
border-radius: var(--radius-sm);
|
|
825
|
+
background: var(--bg-tertiary);
|
|
826
|
+
color: var(--text-secondary);
|
|
827
|
+
text-align: left;
|
|
828
|
+
cursor: pointer;
|
|
829
|
+
transition: all var(--duration-fast) var(--ease-out-quart);
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.config-file-item:hover {
|
|
833
|
+
border-color: var(--accent-primary);
|
|
834
|
+
background: var(--bg-hover);
|
|
835
|
+
color: var(--text-primary);
|
|
836
|
+
box-shadow: 0 0 0 3px var(--accent-primary-subtle);
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.config-file-item:focus-visible {
|
|
840
|
+
outline: 2px solid var(--accent-primary);
|
|
841
|
+
outline-offset: 2px;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.config-file-label {
|
|
845
|
+
flex-shrink: 0;
|
|
846
|
+
color: var(--text-tertiary);
|
|
847
|
+
font-size: 0.8125rem;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
.config-file-item code {
|
|
851
|
+
flex: 1;
|
|
852
|
+
min-width: 0;
|
|
853
|
+
overflow-wrap: anywhere;
|
|
854
|
+
padding: 0;
|
|
855
|
+
background: transparent;
|
|
856
|
+
color: var(--accent-primary);
|
|
857
|
+
font-size: 0.8125rem;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
.config-file-item > i {
|
|
861
|
+
flex-shrink: 0;
|
|
862
|
+
color: var(--text-tertiary);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.config-file-item:hover > i {
|
|
866
|
+
color: var(--accent-primary);
|
|
867
|
+
}
|
|
868
|
+
|
|
805
869
|
/* ============================================
|
|
806
870
|
Loading State
|
|
807
871
|
============================================ */
|
|
@@ -861,6 +925,11 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
861
925
|
border-color: rgba(7, 193, 96, 0.5);
|
|
862
926
|
}
|
|
863
927
|
|
|
928
|
+
/* WorkBuddy cards intentionally have their own hook for later visual changes. */
|
|
929
|
+
.auth-card.workbuddy-auth-card {
|
|
930
|
+
--workbuddy-card-accent: var(--accent-primary);
|
|
931
|
+
}
|
|
932
|
+
|
|
864
933
|
/* Dragging states */
|
|
865
934
|
.auth-card-dragging {
|
|
866
935
|
opacity: 0.5;
|
|
@@ -1256,7 +1325,8 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1256
1325
|
color: var(--text-primary);
|
|
1257
1326
|
}
|
|
1258
1327
|
|
|
1259
|
-
.auth-card .auth-body .codex-env-section
|
|
1328
|
+
.auth-card .auth-body .codex-env-section,
|
|
1329
|
+
.auth-card .auth-body .workbuddy-env-section {
|
|
1260
1330
|
display: flex;
|
|
1261
1331
|
flex-direction: column;
|
|
1262
1332
|
gap: var(--space-sm);
|
|
@@ -1268,18 +1338,21 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1268
1338
|
border-radius: var(--radius-md);
|
|
1269
1339
|
}
|
|
1270
1340
|
|
|
1271
|
-
[data-theme="light"] .auth-card .auth-body .codex-env-section
|
|
1341
|
+
[data-theme="light"] .auth-card .auth-body .codex-env-section,
|
|
1342
|
+
[data-theme="light"] .auth-card .auth-body .workbuddy-env-section {
|
|
1272
1343
|
background-color: rgba(16, 185, 129, 0.075);
|
|
1273
1344
|
border-color: rgba(16, 185, 129, 0.18);
|
|
1274
1345
|
}
|
|
1275
1346
|
|
|
1276
|
-
.auth-card .auth-body .codex-env-section .default-model-row
|
|
1347
|
+
.auth-card .auth-body .codex-env-section .default-model-row,
|
|
1348
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-row {
|
|
1277
1349
|
display: flex;
|
|
1278
1350
|
align-items: center;
|
|
1279
1351
|
gap: var(--space-md);
|
|
1280
1352
|
}
|
|
1281
1353
|
|
|
1282
|
-
.auth-card .auth-body .codex-env-section .default-model-header
|
|
1354
|
+
.auth-card .auth-body .codex-env-section .default-model-header,
|
|
1355
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-header {
|
|
1283
1356
|
display: flex;
|
|
1284
1357
|
align-items: center;
|
|
1285
1358
|
justify-content: space-between;
|
|
@@ -1287,7 +1360,9 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1287
1360
|
}
|
|
1288
1361
|
|
|
1289
1362
|
.auth-card .auth-body .codex-env-section .default-model-header label,
|
|
1290
|
-
.auth-card .auth-body .codex-env-section .default-model-inline-label
|
|
1363
|
+
.auth-card .auth-body .codex-env-section .default-model-inline-label,
|
|
1364
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-header label,
|
|
1365
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-inline-label {
|
|
1291
1366
|
display: flex;
|
|
1292
1367
|
align-items: center;
|
|
1293
1368
|
gap: 6px;
|
|
@@ -1298,7 +1373,8 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1298
1373
|
letter-spacing: 0.05em;
|
|
1299
1374
|
}
|
|
1300
1375
|
|
|
1301
|
-
.auth-card .auth-body .codex-env-section .default-model-inline-label
|
|
1376
|
+
.auth-card .auth-body .codex-env-section .default-model-inline-label,
|
|
1377
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-inline-label {
|
|
1302
1378
|
flex: 0 0 132px;
|
|
1303
1379
|
min-height: 42px;
|
|
1304
1380
|
justify-content: flex-start;
|
|
@@ -1310,17 +1386,20 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1310
1386
|
border-radius: var(--radius-md);
|
|
1311
1387
|
}
|
|
1312
1388
|
|
|
1313
|
-
.auth-card .auth-body .codex-env-section .default-model-header label i
|
|
1389
|
+
.auth-card .auth-body .codex-env-section .default-model-header label i,
|
|
1390
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-header label i {
|
|
1314
1391
|
color: var(--accent-primary);
|
|
1315
1392
|
}
|
|
1316
1393
|
|
|
1317
|
-
.auth-card .auth-body .codex-env-section .default-model-input-wrap
|
|
1394
|
+
.auth-card .auth-body .codex-env-section .default-model-input-wrap,
|
|
1395
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-input-wrap {
|
|
1318
1396
|
position: relative;
|
|
1319
1397
|
flex: 0 1 calc((100% - 132px - var(--space-md)) / 2);
|
|
1320
1398
|
min-width: 0;
|
|
1321
1399
|
}
|
|
1322
1400
|
|
|
1323
|
-
.auth-card .auth-body .codex-env-section input
|
|
1401
|
+
.auth-card .auth-body .codex-env-section input,
|
|
1402
|
+
.auth-card .auth-body .workbuddy-env-section input {
|
|
1324
1403
|
width: 100%;
|
|
1325
1404
|
min-height: 42px;
|
|
1326
1405
|
padding: 10px var(--space-md);
|
|
@@ -1334,11 +1413,13 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1334
1413
|
transition: all var(--duration-fast);
|
|
1335
1414
|
}
|
|
1336
1415
|
|
|
1337
|
-
.auth-card .auth-body .codex-env-section input::placeholder
|
|
1416
|
+
.auth-card .auth-body .codex-env-section input::placeholder,
|
|
1417
|
+
.auth-card .auth-body .workbuddy-env-section input::placeholder {
|
|
1338
1418
|
color: var(--text-disabled);
|
|
1339
1419
|
}
|
|
1340
1420
|
|
|
1341
|
-
.auth-card .auth-body .codex-env-section input:focus
|
|
1421
|
+
.auth-card .auth-body .codex-env-section input:focus,
|
|
1422
|
+
.auth-card .auth-body .workbuddy-env-section input:focus {
|
|
1342
1423
|
background-color: var(--bg-elevated);
|
|
1343
1424
|
border-color: var(--accent-primary);
|
|
1344
1425
|
}
|
|
@@ -1348,9 +1429,22 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1348
1429
|
============================================ */
|
|
1349
1430
|
.auth-card .auth-body .models-section,
|
|
1350
1431
|
.auth-card .auth-body .env-section {
|
|
1432
|
+
display: flex;
|
|
1433
|
+
flex-direction: column;
|
|
1434
|
+
gap: var(--space-sm);
|
|
1351
1435
|
margin-top: var(--space-sm);
|
|
1352
|
-
|
|
1353
|
-
|
|
1436
|
+
margin-bottom: var(--space-md);
|
|
1437
|
+
padding: 12px;
|
|
1438
|
+
background-color: rgba(255, 255, 255, 0.025);
|
|
1439
|
+
border: 1px solid var(--border-subtle);
|
|
1440
|
+
border-radius: var(--radius-md);
|
|
1441
|
+
min-width: 0;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
[data-theme="light"] .auth-card .auth-body .models-section,
|
|
1445
|
+
[data-theme="light"] .auth-card .auth-body .env-section {
|
|
1446
|
+
background-color: rgba(16, 185, 129, 0.075);
|
|
1447
|
+
border-color: rgba(16, 185, 129, 0.18);
|
|
1354
1448
|
}
|
|
1355
1449
|
|
|
1356
1450
|
.auth-card .auth-body .models-section .models-header,
|
|
@@ -1410,6 +1504,199 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1410
1504
|
margin-bottom: var(--space-sm);
|
|
1411
1505
|
}
|
|
1412
1506
|
|
|
1507
|
+
.auth-card .auth-body .env-section .env-list .env-node {
|
|
1508
|
+
min-width: 0;
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
.auth-card .auth-body .env-section .env-list .env-node-row {
|
|
1512
|
+
--env-control-height: 42px;
|
|
1513
|
+
--env-type-width: 112px;
|
|
1514
|
+
display: grid;
|
|
1515
|
+
grid-template-columns: 34px minmax(0, 1fr) var(--env-type-width) minmax(0, 1fr) 34px 34px;
|
|
1516
|
+
padding-left: calc(var(--env-depth, 0) * 24px);
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure,
|
|
1520
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure-spacer {
|
|
1521
|
+
grid-column: 1 / 2;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-key-input,
|
|
1525
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-array-key {
|
|
1526
|
+
grid-column: 2 / 3;
|
|
1527
|
+
width: 100%;
|
|
1528
|
+
min-width: 0;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-type-select {
|
|
1532
|
+
grid-column: 3 / 4;
|
|
1533
|
+
width: 100%;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-value-input,
|
|
1537
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-container-summary {
|
|
1538
|
+
grid-column: 4 / 5;
|
|
1539
|
+
width: 100%;
|
|
1540
|
+
min-width: 0;
|
|
1541
|
+
}
|
|
1542
|
+
|
|
1543
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add,
|
|
1544
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add-spacer {
|
|
1545
|
+
grid-column: 5 / 6;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-delete {
|
|
1549
|
+
grid-column: 6 / 7;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.auth-card .auth-body .env-section .env-list .env-node-children {
|
|
1553
|
+
position: relative;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.auth-card .auth-body .env-section .env-list .env-node-children::before {
|
|
1557
|
+
content: '';
|
|
1558
|
+
position: absolute;
|
|
1559
|
+
top: 0;
|
|
1560
|
+
bottom: var(--space-sm);
|
|
1561
|
+
left: calc(var(--env-guide-depth, 0) * 24px + 17px);
|
|
1562
|
+
border-left: 1px dashed var(--border-default);
|
|
1563
|
+
pointer-events: none;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
.auth-card .auth-body .env-section .env-list .env-array-key {
|
|
1567
|
+
flex: 1;
|
|
1568
|
+
min-width: 0;
|
|
1569
|
+
min-height: var(--env-control-height);
|
|
1570
|
+
padding: 10px var(--space-md);
|
|
1571
|
+
display: flex;
|
|
1572
|
+
align-items: center;
|
|
1573
|
+
color: var(--text-secondary);
|
|
1574
|
+
font-size: 0.875rem;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.auth-card .auth-body .env-section .env-list .env-type-select,
|
|
1578
|
+
.auth-card .auth-body .env-section .env-list .env-boolean-select {
|
|
1579
|
+
height: var(--env-control-height);
|
|
1580
|
+
padding: 0 12px;
|
|
1581
|
+
font-size: 0.875rem;
|
|
1582
|
+
background-color: var(--bg-tertiary);
|
|
1583
|
+
border: 1px solid var(--border-subtle);
|
|
1584
|
+
border-radius: var(--radius-md);
|
|
1585
|
+
outline: none;
|
|
1586
|
+
color: var(--text-primary);
|
|
1587
|
+
transition: all var(--duration-fast);
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1590
|
+
.auth-card .auth-body .env-section .env-list .env-type-select {
|
|
1591
|
+
flex: 0 0 var(--env-type-width);
|
|
1592
|
+
width: var(--env-type-width);
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
.auth-card .auth-body .env-section .env-list .env-boolean-select {
|
|
1596
|
+
flex: 1;
|
|
1597
|
+
min-width: 0;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.auth-card .auth-body .env-section .env-list .env-type-select:focus,
|
|
1601
|
+
.auth-card .auth-body .env-section .env-list .env-boolean-select:focus {
|
|
1602
|
+
border-color: var(--accent-primary);
|
|
1603
|
+
background-color: var(--bg-elevated);
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.auth-card .auth-body .env-section .env-list .env-container-summary {
|
|
1607
|
+
flex: 1;
|
|
1608
|
+
min-width: 0;
|
|
1609
|
+
min-height: var(--env-control-height);
|
|
1610
|
+
padding: 0 var(--space-md);
|
|
1611
|
+
display: flex;
|
|
1612
|
+
align-items: center;
|
|
1613
|
+
color: var(--text-disabled);
|
|
1614
|
+
font-size: 0.875rem;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-action {
|
|
1618
|
+
flex: 0 0 34px;
|
|
1619
|
+
width: 34px;
|
|
1620
|
+
height: 34px;
|
|
1621
|
+
padding: 0;
|
|
1622
|
+
display: inline-flex;
|
|
1623
|
+
align-items: center;
|
|
1624
|
+
justify-content: center;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure-spacer {
|
|
1628
|
+
flex: 0 0 34px;
|
|
1629
|
+
width: 34px;
|
|
1630
|
+
height: 34px;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add-spacer {
|
|
1634
|
+
flex: 0 0 34px;
|
|
1635
|
+
width: 34px;
|
|
1636
|
+
height: 34px;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure {
|
|
1640
|
+
color: var(--text-tertiary);
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure:hover,
|
|
1644
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure:focus-visible {
|
|
1645
|
+
color: var(--accent-primary);
|
|
1646
|
+
background-color: var(--accent-primary-subtle);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add {
|
|
1650
|
+
color: var(--accent-primary);
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add:hover {
|
|
1654
|
+
color: var(--accent-primary-hover);
|
|
1655
|
+
background-color: var(--accent-primary-subtle);
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
@media (max-width: 720px) {
|
|
1659
|
+
.auth-card .auth-body .env-section .env-list .env-node-row {
|
|
1660
|
+
display: grid;
|
|
1661
|
+
grid-template-columns: 34px minmax(0, 1fr) 112px 34px 34px;
|
|
1662
|
+
gap: var(--space-xs);
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure,
|
|
1666
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-disclosure-spacer {
|
|
1667
|
+
grid-column: 1 / 2;
|
|
1668
|
+
grid-row: 1;
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-key-input,
|
|
1672
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-array-key {
|
|
1673
|
+
grid-column: 2 / 3;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-type-select {
|
|
1677
|
+
grid-column: 3 / 4;
|
|
1678
|
+
width: 100%;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-value-input,
|
|
1682
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-container-summary {
|
|
1683
|
+
grid-column: 2 / 4;
|
|
1684
|
+
grid-row: 2;
|
|
1685
|
+
width: 100%;
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add,
|
|
1689
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-add-spacer {
|
|
1690
|
+
grid-column: 4 / 5;
|
|
1691
|
+
grid-row: 1;
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.auth-card .auth-body .env-section .env-list .env-node-row .env-node-delete {
|
|
1695
|
+
grid-column: 5 / 6;
|
|
1696
|
+
grid-row: 1;
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1413
1700
|
.auth-card .auth-body .models-section .models-list .model-item input,
|
|
1414
1701
|
.auth-card .auth-body .env-section .env-list .env-item input {
|
|
1415
1702
|
flex: 1;
|
|
@@ -1423,6 +1710,10 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1423
1710
|
color: var(--text-primary);
|
|
1424
1711
|
}
|
|
1425
1712
|
|
|
1713
|
+
.auth-card .auth-body .env-section .env-list .env-item input {
|
|
1714
|
+
height: var(--env-control-height);
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1426
1717
|
.auth-card .auth-body .models-section .models-list .model-item input::placeholder,
|
|
1427
1718
|
.auth-card .auth-body .env-section .env-list .env-item input::placeholder {
|
|
1428
1719
|
color: var(--text-disabled);
|
|
@@ -1434,6 +1725,14 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1434
1725
|
background-color: var(--bg-elevated);
|
|
1435
1726
|
}
|
|
1436
1727
|
|
|
1728
|
+
.auth-card .auth-body .env-section .env-list .env-item .env-type-select {
|
|
1729
|
+
flex: 0 0 var(--env-type-width);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.auth-card .auth-body .env-section .env-list .env-item .env-node-action {
|
|
1733
|
+
flex: 0 0 34px;
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1437
1736
|
.auth-card .auth-body .models-section .models-list .model-item .separator,
|
|
1438
1737
|
.auth-card .auth-body .env-section .env-list .env-item .separator,
|
|
1439
1738
|
.auth-card .auth-body .models-section .models-list .model-item .separator {
|
|
@@ -1644,18 +1943,21 @@ div:not(.auth-list-ready) > .auth-card:nth-child(5) { animation-delay: 600ms; }
|
|
|
1644
1943
|
padding: 0 var(--space-sm);
|
|
1645
1944
|
}
|
|
1646
1945
|
|
|
1647
|
-
.auth-card .auth-body .codex-env-section .default-model-row
|
|
1946
|
+
.auth-card .auth-body .codex-env-section .default-model-row,
|
|
1947
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-row {
|
|
1648
1948
|
flex-direction: column;
|
|
1649
1949
|
align-items: stretch;
|
|
1650
1950
|
gap: var(--space-sm);
|
|
1651
1951
|
}
|
|
1652
1952
|
|
|
1653
|
-
.auth-card .auth-body .codex-env-section .default-model-inline-label
|
|
1953
|
+
.auth-card .auth-body .codex-env-section .default-model-inline-label,
|
|
1954
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-inline-label {
|
|
1654
1955
|
flex-basis: auto;
|
|
1655
1956
|
justify-content: flex-start;
|
|
1656
1957
|
}
|
|
1657
1958
|
|
|
1658
|
-
.auth-card .auth-body .codex-env-section .default-model-input-wrap
|
|
1959
|
+
.auth-card .auth-body .codex-env-section .default-model-input-wrap,
|
|
1960
|
+
.auth-card .auth-body .workbuddy-env-section .default-model-input-wrap {
|
|
1659
1961
|
flex: 1 1 auto;
|
|
1660
1962
|
}
|
|
1661
1963
|
|