beads-ui 0.4.3 → 0.4.4
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/CHANGES.md +10 -0
- package/app/main.bundle.js +57 -53
- package/app/main.bundle.js.map +2 -2
- package/app/styles.css +17 -26
- package/package.json +1 -1
package/app/styles.css
CHANGED
|
@@ -497,6 +497,9 @@ button:disabled {
|
|
|
497
497
|
vertical-align: middle;
|
|
498
498
|
user-select: none;
|
|
499
499
|
border: 1px solid color-mix(in srgb, currentColor 35%, transparent);
|
|
500
|
+
text-wrap: nowrap;
|
|
501
|
+
overflow: hidden;
|
|
502
|
+
text-overflow: ellipsis;
|
|
500
503
|
}
|
|
501
504
|
.badge + .badge,
|
|
502
505
|
.status-badge + .status-badge,
|
|
@@ -1324,20 +1327,20 @@ html[data-theme='dark'] {
|
|
|
1324
1327
|
gap: 10px;
|
|
1325
1328
|
padding: 8px 0;
|
|
1326
1329
|
border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1330
|
+
&:first-of-type {
|
|
1331
|
+
border-top: none;
|
|
1332
|
+
}
|
|
1333
|
+
& .label {
|
|
1334
|
+
color: var(--muted);
|
|
1335
|
+
font-size: 12px;
|
|
1336
|
+
min-width: 80px;
|
|
1337
|
+
}
|
|
1338
|
+
& .value {
|
|
1339
|
+
font-size: 13px;
|
|
1340
|
+
display: flex;
|
|
1341
|
+
align-items: center;
|
|
1342
|
+
gap: 8px;
|
|
1343
|
+
}
|
|
1341
1344
|
}
|
|
1342
1345
|
|
|
1343
1346
|
/* --- Issue Details Dialog (UI-104) --- */
|
|
@@ -1437,18 +1440,6 @@ html[data-theme='dark'] {
|
|
|
1437
1440
|
line-height: 1.2;
|
|
1438
1441
|
}
|
|
1439
1442
|
|
|
1440
|
-
.prop.labels {
|
|
1441
|
-
align-items: start;
|
|
1442
|
-
}
|
|
1443
|
-
.prop.labels .value > div {
|
|
1444
|
-
display: flex;
|
|
1445
|
-
flex-wrap: wrap;
|
|
1446
|
-
gap: 6px;
|
|
1447
|
-
}
|
|
1448
|
-
.prop.labels .value > div input {
|
|
1449
|
-
flex: 1;
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
1443
|
/* Sidebar control aesthetics */
|
|
1453
1444
|
#detail-root .props-card input[type='text'] {
|
|
1454
1445
|
border: 1px solid var(--control-border);
|