pinokiod 3.157.0 → 3.158.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
package/server/public/style.css
CHANGED
|
@@ -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:
|
|
2397
|
+
order: 999;
|
|
2396
2398
|
background: whitesmoke;
|
|
2397
|
-
border-radius:
|
|
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
|
|
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:
|
|
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
|
-
|
|
655
|
+
location.href = paneUrl;
|
|
656
656
|
} else {
|
|
657
657
|
location.href = `/container?url=${encodeURIComponent(paneUrl)}`;
|
|
658
658
|
}
|
package/server/views/app.ejs
CHANGED