pinokiod 3.157.0 → 3.159.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.157.0",
3
+ "version": "3.159.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -128,7 +128,7 @@
128
128
  }
129
129
 
130
130
  .files-app__sidebar {
131
- width: 280px;
131
+ max-width: 280px;
132
132
  background: var(--sidebar-color);
133
133
  border-right: 1px solid var(--border-color);
134
134
  display: flex;
@@ -2094,6 +2094,7 @@ body.dark header .home {
2094
2094
  header .home {
2095
2095
  color: var(--light-color);
2096
2096
  cursor: pointer !important;
2097
+ padding: 0 5px;
2097
2098
  }
2098
2099
  /*
2099
2100
  .win {
@@ -2381,6 +2382,7 @@ body.dark .mode-selector .btn2.selected {
2381
2382
  body {
2382
2383
  display: flex;
2383
2384
  align-items: stretch;
2385
+ flex-direction: row !important;
2384
2386
  }
2385
2387
  header.navheader .dropdown-content {
2386
2388
  position: relative;
@@ -2392,9 +2394,11 @@ body.dark .mode-selector .btn2.selected {
2392
2394
  background: #222;
2393
2395
  }
2394
2396
  header.navheader h1 #close-window {
2395
- order: 0;
2397
+ order: 999;
2396
2398
  background: whitesmoke;
2397
- border-radius: 0;
2399
+ border-radius: 30px;
2400
+ margin-top: auto;
2401
+ align-self: stretch;
2398
2402
  position: sticky;
2399
2403
  bottom: 0;
2400
2404
  z-index: 10000000;
@@ -2412,6 +2416,9 @@ body.dark .mode-selector .btn2.selected {
2412
2416
  display: block;
2413
2417
  position: sticky;
2414
2418
  top: 0;
2419
+ align-self: flex-start;
2420
+ padding: 5px 0;
2421
+ z-index: 10000001;
2415
2422
  }
2416
2423
  header.navheader {
2417
2424
  overflow: auto;
@@ -2442,6 +2449,7 @@ body.dark .mode-selector .btn2.selected {
2442
2449
  flex: 1 1 auto;
2443
2450
  height: auto;
2444
2451
  overflow: auto;
2452
+ flex-wrap: nowrap;
2445
2453
  }
2446
2454
  .mode-selector {
2447
2455
  flex-direction: column;
@@ -752,13 +752,14 @@ body.dark .urlbar input[type=url] {
752
752
  background: rgba(0,0,0,0.05);
753
753
  padding: 5px;
754
754
  flex-grow: 1;
755
- margin: 0 5px;
755
+ margin: 5px 0;
756
+ border-radius: 10px;
756
757
  }
757
758
  .urlbar input[type=url] {
758
759
  background: rgba(0,0,0,0.05);
759
760
  border-radius: 6px;
760
761
  border: none;
761
- padding: 7px;
762
+ padding: 8px 10px;
762
763
  width: 100%;
763
764
  }
764
765
  @media only screen and (max-width: 768px) {
@@ -770,8 +771,6 @@ body.dark .urlbar input[type=url] {
770
771
  }
771
772
  .mobile-link-button {
772
773
  display: block;
773
- margin: 0;
774
- border-radius: 0;
775
774
  }
776
775
  }
777
776
  .mobile-link-button {
@@ -652,7 +652,7 @@ function initUrlDropdown(config = {}) {
652
652
  try {
653
653
  const parsed = new URL(paneUrl);
654
654
  if (String(parsed.port) === '42000') {
655
- window.open(paneUrl, '_blank', 'self');
655
+ location.href = paneUrl;
656
656
  } else {
657
657
  location.href = `/container?url=${encodeURIComponent(paneUrl)}`;
658
658
  }
@@ -2798,6 +2798,7 @@ body.dark .pinokio-fork-dropdown-remote, body.dark .pinokio-publish-dropdown-rem
2798
2798
  flex: 1 1 auto;
2799
2799
  height: auto;
2800
2800
  overflow: auto;
2801
+ flex-wrap: nowrap;
2801
2802
  }
2802
2803
  .appcanvas {
2803
2804
  margin-left: 0;
@@ -196,6 +196,11 @@ body.dark #status-window b {
196
196
  background: rgba(127, 91, 243, 0.9);
197
197
  transition: width 0.2s;
198
198
  }
199
+ @media only screen and (max-width: 768px) {
200
+ body {
201
+ flex-direction: column !important;
202
+ }
203
+ }
199
204
  </style>
200
205
  <link href="/terminal.css" rel="stylesheet"/>
201
206
  <script>
@@ -172,6 +172,11 @@ body.dark #status-window b {
172
172
  body.frozen {
173
173
  overflow: auto !important;
174
174
  }
175
+ @media only screen and (max-width: 768px) {
176
+ body {
177
+ flex-direction: column !important;
178
+ }
179
+ }
175
180
  </style>
176
181
  <link href="/terminal.css" rel="stylesheet"/>
177
182
  <script>