acdev 1.1.2 → 1.2.1
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/package.json +1 -1
- package/public/app.js +1 -1
- package/public/styles.css +20 -6
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -4971,7 +4971,7 @@ async function savePermissionMode(next) {
|
|
|
4971
4971
|
setSettingsFeedback(msg, 'error');
|
|
4972
4972
|
return;
|
|
4973
4973
|
}
|
|
4974
|
-
|
|
4974
|
+
appConfig = { ...appConfig, ...data };
|
|
4975
4975
|
} catch (err) {
|
|
4976
4976
|
updatePermissionModeUI(prev);
|
|
4977
4977
|
if (els.overviewPermissionModeFeedback) {
|
package/public/styles.css
CHANGED
|
@@ -1351,10 +1351,14 @@ a { color: var(--primary); text-underline-offset: 3px; }
|
|
|
1351
1351
|
}
|
|
1352
1352
|
|
|
1353
1353
|
.log-pane-wrap {
|
|
1354
|
-
|
|
1354
|
+
display: flex;
|
|
1355
|
+
flex-direction: column;
|
|
1356
|
+
align-items: flex-end;
|
|
1357
|
+
gap: 6px;
|
|
1355
1358
|
}
|
|
1356
1359
|
|
|
1357
1360
|
.log-pane {
|
|
1361
|
+
width: 100%;
|
|
1358
1362
|
background: var(--surface-2);
|
|
1359
1363
|
border-radius: 8px;
|
|
1360
1364
|
padding: 8px 10px;
|
|
@@ -1365,10 +1369,6 @@ a { color: var(--primary); text-underline-offset: 3px; }
|
|
|
1365
1369
|
}
|
|
1366
1370
|
|
|
1367
1371
|
.log-jump-latest {
|
|
1368
|
-
position: absolute;
|
|
1369
|
-
right: 12px;
|
|
1370
|
-
bottom: 10px;
|
|
1371
|
-
z-index: 1;
|
|
1372
1372
|
background: var(--surface);
|
|
1373
1373
|
border: 1px solid var(--border);
|
|
1374
1374
|
color: var(--text);
|
|
@@ -2630,7 +2630,7 @@ body.diff-fs-open {
|
|
|
2630
2630
|
color: var(--text-muted);
|
|
2631
2631
|
cursor: pointer;
|
|
2632
2632
|
white-space: nowrap;
|
|
2633
|
-
transition: background 0.
|
|
2633
|
+
transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
|
|
2634
2634
|
}
|
|
2635
2635
|
|
|
2636
2636
|
.source-toggle--compact .source-btn {
|
|
@@ -2652,6 +2652,20 @@ body.diff-fs-open {
|
|
|
2652
2652
|
box-shadow: var(--shadow-sm);
|
|
2653
2653
|
}
|
|
2654
2654
|
|
|
2655
|
+
/* Agent permission mode: selected button uses the theme's primary color. */
|
|
2656
|
+
#settings-permission-mode .source-btn.active,
|
|
2657
|
+
#overview-permission-mode .source-btn.active {
|
|
2658
|
+
background: var(--primary);
|
|
2659
|
+
color: var(--btn-on-primary);
|
|
2660
|
+
border-color: var(--primary);
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
#settings-permission-mode .source-btn.active:hover:not(:disabled),
|
|
2664
|
+
#overview-permission-mode .source-btn.active:hover:not(:disabled) {
|
|
2665
|
+
background: var(--primary-hover);
|
|
2666
|
+
border-color: var(--primary-hover);
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2655
2669
|
.source-btn:disabled {
|
|
2656
2670
|
opacity: 0.45;
|
|
2657
2671
|
cursor: not-allowed;
|