@worca/ui 0.18.0 → 0.19.0
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/app/main.bundle.js +888 -781
- package/app/main.bundle.js.map +4 -4
- package/app/styles.css +45 -0
- package/package.json +1 -1
package/app/styles.css
CHANGED
|
@@ -3436,6 +3436,51 @@ sl-details.learnings-panel::part(content) {
|
|
|
3436
3436
|
align-items: center;
|
|
3437
3437
|
}
|
|
3438
3438
|
|
|
3439
|
+
.pr-details-section {
|
|
3440
|
+
margin-top: 8px;
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3443
|
+
.pr-details-table {
|
|
3444
|
+
border-collapse: collapse;
|
|
3445
|
+
font-size: 13px;
|
|
3446
|
+
width: 100%;
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.pr-details-table td {
|
|
3450
|
+
padding: 3px 8px 3px 0;
|
|
3451
|
+
vertical-align: middle;
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
.pr-details-table td.meta-label {
|
|
3455
|
+
white-space: nowrap;
|
|
3456
|
+
width: 1%;
|
|
3457
|
+
padding-right: 10px;
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
.pr-commit-cell {
|
|
3461
|
+
display: flex;
|
|
3462
|
+
align-items: center;
|
|
3463
|
+
gap: 4px;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
.pr-commit-sha {
|
|
3467
|
+
font-family: monospace;
|
|
3468
|
+
font-size: 12px;
|
|
3469
|
+
background: var(--bg-secondary);
|
|
3470
|
+
padding: 1px 5px;
|
|
3471
|
+
border-radius: 3px;
|
|
3472
|
+
border: 1px solid var(--border-subtle);
|
|
3473
|
+
}
|
|
3474
|
+
|
|
3475
|
+
.pr-branch-flow {
|
|
3476
|
+
font-family: monospace;
|
|
3477
|
+
font-size: 12px;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
.pr-title-badge {
|
|
3481
|
+
margin-left: 6px;
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3439
3484
|
.classification-strip {
|
|
3440
3485
|
margin-top: 10px;
|
|
3441
3486
|
padding: 8px 10px;
|