9remote 2.0.81 → 2.1.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/dist/cli.cjs +66 -66
- package/dist/ptyDaemon.cjs +7 -7
- package/dist/server.cjs +81 -80
- package/dist/ui/assets/{index-BBFwJ_ji.js → index-DTJQKaOM.js} +3806 -3476
- package/dist/ui/assets/{index-DKExB8wf.css → index-DxFTXB_J.css} +31 -5
- package/dist/ui/index.html +2 -2
- package/package.json +1 -1
|
@@ -1179,6 +1179,9 @@ button {
|
|
|
1179
1179
|
.h-2{
|
|
1180
1180
|
height: 0.5rem;
|
|
1181
1181
|
}
|
|
1182
|
+
.h-3{
|
|
1183
|
+
height: 0.75rem;
|
|
1184
|
+
}
|
|
1182
1185
|
.h-32{
|
|
1183
1186
|
height: 8rem;
|
|
1184
1187
|
}
|
|
@@ -1610,6 +1613,9 @@ button {
|
|
|
1610
1613
|
.border-0{
|
|
1611
1614
|
border-width: 0px;
|
|
1612
1615
|
}
|
|
1616
|
+
.border-2{
|
|
1617
|
+
border-width: 2px;
|
|
1618
|
+
}
|
|
1613
1619
|
.border-b{
|
|
1614
1620
|
border-bottom-width: 1px;
|
|
1615
1621
|
}
|
|
@@ -2309,9 +2315,29 @@ button {
|
|
|
2309
2315
|
.terminal-wrapper .xterm-viewport::-webkit-scrollbar-thumb:hover {
|
|
2310
2316
|
background: rgba(var(--brand-rgb), 0.8);
|
|
2311
2317
|
}
|
|
2312
|
-
/* XTerm custom overlay scrollbar (JS-rendered div
|
|
2313
|
-
.terminal-wrapper .xterm .scrollbar {
|
|
2314
|
-
|
|
2318
|
+
/* XTerm custom overlay scrollbar (JS-rendered div) — 7px brand-colored, no fade. */
|
|
2319
|
+
.terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar {
|
|
2320
|
+
width: 7px !important;
|
|
2321
|
+
opacity: 1 !important;
|
|
2322
|
+
pointer-events: auto !important;
|
|
2323
|
+
transition: none !important;
|
|
2324
|
+
}
|
|
2325
|
+
.terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar .slider {
|
|
2326
|
+
width: 7px !important;
|
|
2327
|
+
border-radius: 4px !important;
|
|
2328
|
+
background: rgba(var(--brand-rgb), 0.5) !important;
|
|
2329
|
+
}
|
|
2330
|
+
.terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar .slider:hover {
|
|
2331
|
+
background: rgba(var(--brand-rgb), 0.8) !important;
|
|
2332
|
+
}
|
|
2333
|
+
/* Force the overlay scrollbar solid at all times when scrollable. xterm fades
|
|
2334
|
+
it to .invisible after an idle timeout; override both visibility classes. */
|
|
2335
|
+
.terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar.visible,
|
|
2336
|
+
.terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar.invisible {
|
|
2337
|
+
opacity: 1 !important;
|
|
2338
|
+
pointer-events: auto !important;
|
|
2339
|
+
transition: none !important;
|
|
2340
|
+
}
|
|
2315
2341
|
.terminal-wrapper .xterm-screen { touch-action: pan-y !important; }
|
|
2316
2342
|
.xterm .xterm-helpers { z-index: 0 !important; }
|
|
2317
2343
|
.xterm-helper-textarea { opacity: 0 !important; }
|
|
@@ -2320,8 +2346,8 @@ button {
|
|
|
2320
2346
|
content: "";
|
|
2321
2347
|
position: absolute;
|
|
2322
2348
|
inset: 0;
|
|
2323
|
-
border:
|
|
2324
|
-
box-shadow: 0 0
|
|
2349
|
+
border: 2px solid #22c55e;
|
|
2350
|
+
box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
|
|
2325
2351
|
pointer-events: none;
|
|
2326
2352
|
z-index: 2;
|
|
2327
2353
|
}
|
package/dist/ui/index.html
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
const savedTheme = localStorage.getItem("9remote-theme") || "dark";
|
|
15
15
|
document.documentElement.setAttribute("data-theme", savedTheme);
|
|
16
16
|
</script>
|
|
17
|
-
<script type="module" crossorigin src="/assets/index-
|
|
18
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
17
|
+
<script type="module" crossorigin src="/assets/index-DTJQKaOM.js"></script>
|
|
18
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DxFTXB_J.css">
|
|
19
19
|
</head>
|
|
20
20
|
<body>
|
|
21
21
|
<div id="root"></div>
|