9remote 2.0.81 → 2.0.82

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.
@@ -2309,9 +2309,29 @@ button {
2309
2309
  .terminal-wrapper .xterm-viewport::-webkit-scrollbar-thumb:hover {
2310
2310
  background: rgba(var(--brand-rgb), 0.8);
2311
2311
  }
2312
- /* XTerm custom overlay scrollbar (JS-rendered div, not native) — thin only, keep default color */
2313
- .terminal-wrapper .xterm .scrollbar { width: 6px !important; }
2314
- .terminal-wrapper .xterm .scrollbar .slider { width: 6px !important; border-radius: 3px !important; }
2312
+ /* XTerm custom overlay scrollbar (JS-rendered div) — 7px brand-colored, no fade. */
2313
+ .terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar {
2314
+ width: 7px !important;
2315
+ opacity: 1 !important;
2316
+ pointer-events: auto !important;
2317
+ transition: none !important;
2318
+ }
2319
+ .terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar .slider {
2320
+ width: 7px !important;
2321
+ border-radius: 4px !important;
2322
+ background: rgba(var(--brand-rgb), 0.5) !important;
2323
+ }
2324
+ .terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar .slider:hover {
2325
+ background: rgba(var(--brand-rgb), 0.8) !important;
2326
+ }
2327
+ /* Force the overlay scrollbar solid at all times when scrollable. xterm fades
2328
+ it to .invisible after an idle timeout; override both visibility classes. */
2329
+ .terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar.visible,
2330
+ .terminal-wrapper .xterm .xterm-scrollable-element > .scrollbar.invisible {
2331
+ opacity: 1 !important;
2332
+ pointer-events: auto !important;
2333
+ transition: none !important;
2334
+ }
2315
2335
  .terminal-wrapper .xterm-screen { touch-action: pan-y !important; }
2316
2336
  .xterm .xterm-helpers { z-index: 0 !important; }
2317
2337
  .xterm-helper-textarea { opacity: 0 !important; }
@@ -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-BBFwJ_ji.js"></script>
18
- <link rel="stylesheet" crossorigin href="/assets/index-DKExB8wf.css">
17
+ <script type="module" crossorigin src="/assets/index-CqRtrqXo.js"></script>
18
+ <link rel="stylesheet" crossorigin href="/assets/index-X3NMeu-r.css">
19
19
  </head>
20
20
  <body>
21
21
  <div id="root"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "9remote",
3
- "version": "2.0.81",
3
+ "version": "2.0.82",
4
4
  "type": "module",
5
5
  "description": "Remote terminal access from anywhere",
6
6
  "main": "dist/server.cjs",