daedalus-cli 3.78.0 → 3.78.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/CHANGELOG.md +7 -0
- package/dist/webui/public/index.html +5 -5
- package/dist/webui/public/styles.css +25 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.78.1](https://github.com/bgill55/daedalus/compare/v3.78.0...v3.78.1) (2026-09-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **webui:** resolve sidebar tab text clipping with responsive scrollable tab strip ([e5c5ccc](https://github.com/bgill55/daedalus/commit/e5c5cccb4d028bd72ac1d1a134958fae4b820ceb))
|
|
7
|
+
|
|
1
8
|
# [3.78.0](https://github.com/bgill55/daedalus/compare/v3.77.0...v3.78.0) (2026-09-05)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -190,11 +190,11 @@
|
|
|
190
190
|
<span class="metric-name">ARCHIVES</span>
|
|
191
191
|
</div>
|
|
192
192
|
<div class="sidebar-tabs">
|
|
193
|
-
<button class="sidebar-tab active" data-tab="commands">ORACLES</button>
|
|
194
|
-
<button class="sidebar-tab" data-tab="files">
|
|
195
|
-
<button class="sidebar-tab" data-tab="diff">
|
|
196
|
-
<button class="sidebar-tab" data-tab="context">SANCTUM</button>
|
|
197
|
-
<button class="sidebar-tab" data-tab="sessions">
|
|
193
|
+
<button class="sidebar-tab active" data-tab="commands" title="Oracles / Slash Commands">ORACLES</button>
|
|
194
|
+
<button class="sidebar-tab" data-tab="files" title="Labyrinth / File Tree">FILES</button>
|
|
195
|
+
<button class="sidebar-tab" data-tab="diff" title="Working Tree Git Diff">DIFF</button>
|
|
196
|
+
<button class="sidebar-tab" data-tab="context" title="Sanctum / Active Context">SANCTUM</button>
|
|
197
|
+
<button class="sidebar-tab" data-tab="sessions" title="Chronicles / Saved Sessions">HISTORY</button>
|
|
198
198
|
</div>
|
|
199
199
|
</div>
|
|
200
200
|
|
|
@@ -901,10 +901,21 @@ body {
|
|
|
901
901
|
display: flex;
|
|
902
902
|
gap: 4px;
|
|
903
903
|
width: 100%;
|
|
904
|
+
overflow-x: auto;
|
|
905
|
+
overflow-y: hidden;
|
|
906
|
+
scrollbar-width: none;
|
|
907
|
+
-ms-overflow-style: none;
|
|
908
|
+
-webkit-overflow-scrolling: touch;
|
|
909
|
+
padding-bottom: 2px;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.sidebar-tabs::-webkit-scrollbar {
|
|
913
|
+
display: none;
|
|
904
914
|
}
|
|
905
915
|
|
|
906
916
|
.sidebar-tab {
|
|
907
|
-
flex: 1;
|
|
917
|
+
flex: 1 1 0;
|
|
918
|
+
min-width: 0;
|
|
908
919
|
text-align: center;
|
|
909
920
|
justify-content: center;
|
|
910
921
|
background: rgba(4, 7, 13, 0.6);
|
|
@@ -914,13 +925,10 @@ body {
|
|
|
914
925
|
font-family: var(--font-mythic);
|
|
915
926
|
font-size: 8.5px;
|
|
916
927
|
font-weight: 700;
|
|
917
|
-
letter-spacing: 0.
|
|
918
|
-
padding:
|
|
928
|
+
letter-spacing: 0.4px;
|
|
929
|
+
padding: 6px 3px;
|
|
919
930
|
cursor: pointer;
|
|
920
931
|
white-space: nowrap;
|
|
921
|
-
min-width: 0;
|
|
922
|
-
overflow: hidden;
|
|
923
|
-
text-overflow: ellipsis;
|
|
924
932
|
transition: all 0.15s ease-in-out;
|
|
925
933
|
}
|
|
926
934
|
|
|
@@ -2803,16 +2811,21 @@ body {
|
|
|
2803
2811
|
}
|
|
2804
2812
|
|
|
2805
2813
|
.sidebar-tabs {
|
|
2806
|
-
display:
|
|
2807
|
-
|
|
2814
|
+
display: flex;
|
|
2815
|
+
overflow-x: auto;
|
|
2816
|
+
overflow-y: hidden;
|
|
2808
2817
|
gap: 4px;
|
|
2818
|
+
padding-bottom: 4px;
|
|
2819
|
+
-webkit-overflow-scrolling: touch;
|
|
2820
|
+
scrollbar-width: none;
|
|
2809
2821
|
}
|
|
2810
2822
|
|
|
2811
2823
|
.sidebar-tab {
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2824
|
+
flex: 1 0 auto;
|
|
2825
|
+
font-size: 9px;
|
|
2826
|
+
padding: 8px 10px;
|
|
2827
|
+
min-height: 38px;
|
|
2828
|
+
white-space: nowrap;
|
|
2816
2829
|
}
|
|
2817
2830
|
|
|
2818
2831
|
.modal-card {
|