agent-tasks 1.9.14 → 1.9.16
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/agent-desk-plugin.json +1 -1
- package/dist/ui/app.js +2 -0
- package/dist/ui/styles.css +6 -0
- package/package.json +1 -1
package/agent-desk-plugin.json
CHANGED
package/dist/ui/app.js
CHANGED
|
@@ -815,6 +815,8 @@ TaskBoard.mount = function (container, options) {
|
|
|
815
815
|
|
|
816
816
|
TaskBoard._root = shadow;
|
|
817
817
|
_init();
|
|
818
|
+
var themeBtn = shadow.getElementById('theme-toggle');
|
|
819
|
+
if (themeBtn) themeBtn.style.display = 'none';
|
|
818
820
|
};
|
|
819
821
|
|
|
820
822
|
TaskBoard.unmount = function () {
|
package/dist/ui/styles.css
CHANGED
|
@@ -503,6 +503,7 @@ header {
|
|
|
503
503
|
display: flex;
|
|
504
504
|
flex: 1;
|
|
505
505
|
overflow: hidden;
|
|
506
|
+
position: relative;
|
|
506
507
|
transition: all var(--transition-slow);
|
|
507
508
|
}
|
|
508
509
|
|
|
@@ -1515,8 +1516,13 @@ header {
|
|
|
1515
1516
|
}
|
|
1516
1517
|
|
|
1517
1518
|
.board-wrapper.panel-open .side-panel {
|
|
1519
|
+
position: absolute;
|
|
1520
|
+
right: 0;
|
|
1521
|
+
top: 0;
|
|
1522
|
+
bottom: 0;
|
|
1518
1523
|
width: var(--panel-width);
|
|
1519
1524
|
min-width: var(--panel-width);
|
|
1525
|
+
z-index: 80;
|
|
1520
1526
|
}
|
|
1521
1527
|
|
|
1522
1528
|
.board-wrapper.panel-open .side-panel.panel-wide {
|
package/package.json
CHANGED