pinokiod 3.156.0 → 3.157.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 +1 -1
- package/server/public/common.js +78 -4
- package/server/public/files-app/app.css +1 -12
- package/server/public/layout.js +39 -7
- package/server/public/style.css +31 -13
- package/server/public/urldropdown.css +1 -1
- package/server/views/app.ejs +39 -4
- package/server/views/connect/x.ejs +3 -3
- package/server/views/connect.ejs +3 -3
- package/server/views/container.ejs +3 -4
- package/server/views/download.ejs +3 -3
- package/server/views/explore.ejs +3 -3
- package/server/views/form.ejs +3 -3
- package/server/views/frame.ejs +37 -3
- package/server/views/github.ejs +3 -3
- package/server/views/help.ejs +3 -3
- package/server/views/index.ejs +3 -3
- package/server/views/index2.ejs +3 -3
- package/server/views/init/index.ejs +3 -3
- package/server/views/mini.ejs +3 -3
- package/server/views/net.ejs +3 -3
- package/server/views/network.ejs +3 -3
- package/server/views/network2.ejs +3 -3
- package/server/views/old_network.ejs +3 -3
- package/server/views/prototype/index.ejs +3 -3
- package/server/views/review.ejs +3 -3
- package/server/views/screenshots.ejs +3 -3
- package/server/views/settings.ejs +3 -3
- package/server/views/setup.ejs +3 -3
- package/server/views/setup_home.ejs +3 -3
- package/server/views/terminals.ejs +3 -3
- package/server/views/tools.ejs +3 -3
package/package.json
CHANGED
package/server/public/common.js
CHANGED
|
@@ -1918,6 +1918,55 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
1918
1918
|
*/
|
|
1919
1919
|
})
|
|
1920
1920
|
}
|
|
1921
|
+
const requestLayoutSplitViaMessage = ({ direction, targetUrl }) => new Promise((resolve) => {
|
|
1922
|
+
if (!direction || !targetUrl) {
|
|
1923
|
+
resolve(false);
|
|
1924
|
+
return;
|
|
1925
|
+
}
|
|
1926
|
+
if (!window.parent || window.parent === window) {
|
|
1927
|
+
resolve(false);
|
|
1928
|
+
return;
|
|
1929
|
+
}
|
|
1930
|
+
const requestId = `split_${Date.now()}_${Math.random().toString(36).slice(2, 10)}`;
|
|
1931
|
+
let settled = false;
|
|
1932
|
+
let timer = null;
|
|
1933
|
+
|
|
1934
|
+
const cleanup = (result) => {
|
|
1935
|
+
if (settled) {
|
|
1936
|
+
return;
|
|
1937
|
+
}
|
|
1938
|
+
settled = true;
|
|
1939
|
+
window.removeEventListener('message', handleResponse);
|
|
1940
|
+
if (timer !== null) {
|
|
1941
|
+
clearTimeout(timer);
|
|
1942
|
+
}
|
|
1943
|
+
resolve(result);
|
|
1944
|
+
};
|
|
1945
|
+
|
|
1946
|
+
function handleResponse(event) {
|
|
1947
|
+
if (!event || !event.data || event.source !== window.parent) {
|
|
1948
|
+
return;
|
|
1949
|
+
}
|
|
1950
|
+
if (event.data.e !== 'layout-split-response' || event.data.requestId !== requestId) {
|
|
1951
|
+
return;
|
|
1952
|
+
}
|
|
1953
|
+
cleanup(Boolean(event.data.ok));
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
window.addEventListener('message', handleResponse);
|
|
1957
|
+
timer = window.setTimeout(() => cleanup(false), 1500);
|
|
1958
|
+
|
|
1959
|
+
try {
|
|
1960
|
+
window.parent.postMessage({
|
|
1961
|
+
e: 'layout-split-request',
|
|
1962
|
+
requestId,
|
|
1963
|
+
direction,
|
|
1964
|
+
targetUrl,
|
|
1965
|
+
}, '*');
|
|
1966
|
+
} catch (_) {
|
|
1967
|
+
cleanup(false);
|
|
1968
|
+
}
|
|
1969
|
+
});
|
|
1921
1970
|
const handleSplitNavigation = async (anchor) => {
|
|
1922
1971
|
const href = anchor.getAttribute('href') || '/columns';
|
|
1923
1972
|
const originUrl = window.location.href;
|
|
@@ -1946,14 +1995,31 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
1946
1995
|
return;
|
|
1947
1996
|
}
|
|
1948
1997
|
|
|
1949
|
-
const
|
|
1950
|
-
|
|
1998
|
+
const direction = href === '/rows' ? 'rows' : 'columns';
|
|
1999
|
+
|
|
2000
|
+
let layoutApi = null;
|
|
2001
|
+
try {
|
|
2002
|
+
layoutApi = window.parent && window.parent.PinokioLayout;
|
|
2003
|
+
} catch (error) {
|
|
2004
|
+
if (!(error instanceof DOMException) || error.name !== 'SecurityError') {
|
|
2005
|
+
console.warn('Unable to access parent layout API', error);
|
|
2006
|
+
}
|
|
2007
|
+
layoutApi = null;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
const frameId = (() => {
|
|
2011
|
+
try {
|
|
2012
|
+
return window.frameElement?.dataset?.nodeId || window.name || null;
|
|
2013
|
+
} catch (_) {
|
|
2014
|
+
return window.name || null;
|
|
2015
|
+
}
|
|
2016
|
+
})();
|
|
1951
2017
|
|
|
1952
2018
|
if (layoutApi && typeof layoutApi.split === 'function' && frameId) {
|
|
1953
2019
|
try {
|
|
1954
2020
|
const ok = layoutApi.split({
|
|
1955
2021
|
frameId,
|
|
1956
|
-
direction
|
|
2022
|
+
direction,
|
|
1957
2023
|
targetUrl: selectedUrl,
|
|
1958
2024
|
});
|
|
1959
2025
|
if (ok) {
|
|
@@ -1961,10 +2027,18 @@ document.addEventListener("DOMContentLoaded", () => {
|
|
|
1961
2027
|
return;
|
|
1962
2028
|
}
|
|
1963
2029
|
} catch (error) {
|
|
1964
|
-
console.warn('Pinokio layout split failed, falling back to
|
|
2030
|
+
console.warn('Pinokio layout split failed, falling back to messaging.', error);
|
|
1965
2031
|
}
|
|
1966
2032
|
}
|
|
1967
2033
|
|
|
2034
|
+
const messageSplitOk = await requestLayoutSplitViaMessage({
|
|
2035
|
+
direction,
|
|
2036
|
+
targetUrl: selectedUrl,
|
|
2037
|
+
});
|
|
2038
|
+
if (messageSplitOk) {
|
|
2039
|
+
return;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
1968
2042
|
try {
|
|
1969
2043
|
const target = new URL(href, window.location.origin);
|
|
1970
2044
|
target.searchParams.set('origin', originUrl);
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
display: flex;
|
|
3
3
|
flex-direction: column;
|
|
4
4
|
height: 100vh;
|
|
5
|
+
width: 100%;
|
|
5
6
|
background: var(--background-color, #f7f7f7);
|
|
6
7
|
color: var(--text-color, #111);
|
|
7
8
|
}
|
|
@@ -296,18 +297,6 @@ body.dark .files-app__tab--stale .files-app__tab-label::after {
|
|
|
296
297
|
color: var(--muted-color);
|
|
297
298
|
}
|
|
298
299
|
|
|
299
|
-
@media (max-width: 900px) {
|
|
300
|
-
.files-app__body {
|
|
301
|
-
flex-direction: column;
|
|
302
|
-
}
|
|
303
|
-
.files-app__sidebar {
|
|
304
|
-
width: 100%;
|
|
305
|
-
max-height: 260px;
|
|
306
|
-
border-right: none;
|
|
307
|
-
border-bottom: 1px solid var(--border-color);
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
|
|
311
300
|
.files-app__status[data-state='error'] {
|
|
312
301
|
color: #ef4444;
|
|
313
302
|
}
|
package/server/public/layout.js
CHANGED
|
@@ -460,18 +460,13 @@
|
|
|
460
460
|
if (frameId) {
|
|
461
461
|
payload.frameId = frameId;
|
|
462
462
|
}
|
|
463
|
-
const targetOrigin = HOST_ORIGIN;
|
|
464
463
|
const sendToWindow = (win) => {
|
|
465
464
|
if (!win) {
|
|
466
465
|
return;
|
|
467
466
|
}
|
|
468
467
|
try {
|
|
469
|
-
win.postMessage(payload,
|
|
470
|
-
} catch (
|
|
471
|
-
try {
|
|
472
|
-
win.postMessage(payload, '*');
|
|
473
|
-
} catch (_) {}
|
|
474
|
-
}
|
|
468
|
+
win.postMessage(payload, '*');
|
|
469
|
+
} catch (_) {}
|
|
475
470
|
};
|
|
476
471
|
if (targetWindow) {
|
|
477
472
|
sendToWindow(targetWindow);
|
|
@@ -681,6 +676,43 @@
|
|
|
681
676
|
broadcastLayoutState(event.source, frameId);
|
|
682
677
|
return;
|
|
683
678
|
}
|
|
679
|
+
if (event.data.e === 'layout-split-request') {
|
|
680
|
+
const { requestId = null, direction = null, targetUrl = null } = event.data;
|
|
681
|
+
let ok = false;
|
|
682
|
+
if (direction && targetUrl) {
|
|
683
|
+
let frameId = null;
|
|
684
|
+
for (const [id, entry] of leafElements.entries()) {
|
|
685
|
+
if (entry.iframe && entry.iframe.contentWindow === event.source) {
|
|
686
|
+
frameId = id;
|
|
687
|
+
break;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
if (frameId) {
|
|
691
|
+
const nextDirection = direction === 'rows' ? 'rows' : 'columns';
|
|
692
|
+
try {
|
|
693
|
+
ok = splitLeaf(frameId, nextDirection, normalizeSrc(targetUrl));
|
|
694
|
+
if (ok) {
|
|
695
|
+
ensureSession();
|
|
696
|
+
}
|
|
697
|
+
} catch (error) {
|
|
698
|
+
console.error('[PinokioLayout] Split via message failed', error);
|
|
699
|
+
ok = false;
|
|
700
|
+
}
|
|
701
|
+
} else {
|
|
702
|
+
console.warn('[PinokioLayout] Unable to resolve frame for split request');
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
try {
|
|
706
|
+
event.source?.postMessage({
|
|
707
|
+
e: 'layout-split-response',
|
|
708
|
+
requestId,
|
|
709
|
+
ok,
|
|
710
|
+
}, event.origin || '*');
|
|
711
|
+
} catch (error) {
|
|
712
|
+
console.warn('[PinokioLayout] Failed to respond to split request', error);
|
|
713
|
+
}
|
|
714
|
+
return;
|
|
715
|
+
}
|
|
684
716
|
if (event.data.e === 'close') {
|
|
685
717
|
const frameId = (() => {
|
|
686
718
|
for (const [id, entry] of leafElements.entries()) {
|
package/server/public/style.css
CHANGED
|
@@ -1076,7 +1076,7 @@ header {
|
|
|
1076
1076
|
height: 500px;
|
|
1077
1077
|
}
|
|
1078
1078
|
header h1 {
|
|
1079
|
-
padding:
|
|
1079
|
+
padding: 5px;
|
|
1080
1080
|
margin: 0;
|
|
1081
1081
|
font-size: 18px;
|
|
1082
1082
|
line-height: 18px;
|
|
@@ -2093,7 +2093,6 @@ body.dark header .home {
|
|
|
2093
2093
|
}
|
|
2094
2094
|
header .home {
|
|
2095
2095
|
color: var(--light-color);
|
|
2096
|
-
padding: 10px;
|
|
2097
2096
|
cursor: pointer !important;
|
|
2098
2097
|
}
|
|
2099
2098
|
/*
|
|
@@ -2381,7 +2380,7 @@ body.dark .mode-selector .btn2.selected {
|
|
|
2381
2380
|
@media only screen and (max-width: 768px) {
|
|
2382
2381
|
body {
|
|
2383
2382
|
display: flex;
|
|
2384
|
-
|
|
2383
|
+
align-items: stretch;
|
|
2385
2384
|
}
|
|
2386
2385
|
header.navheader .dropdown-content {
|
|
2387
2386
|
position: relative;
|
|
@@ -2417,20 +2416,32 @@ body.dark .mode-selector .btn2.selected {
|
|
|
2417
2416
|
header.navheader {
|
|
2418
2417
|
overflow: auto;
|
|
2419
2418
|
flex-shrink: 0;
|
|
2420
|
-
position:
|
|
2421
|
-
top:
|
|
2422
|
-
left:
|
|
2423
|
-
height:
|
|
2419
|
+
position: relative;
|
|
2420
|
+
top: auto;
|
|
2421
|
+
left: auto;
|
|
2422
|
+
height: auto;
|
|
2423
|
+
min-height: 0;
|
|
2424
|
+
/*
|
|
2425
|
+
width: 55px;
|
|
2426
|
+
min-width: 55px;
|
|
2427
|
+
max-width: 55px;
|
|
2428
|
+
*/
|
|
2429
|
+
backdrop-filter: none;
|
|
2430
|
+
display: flex;
|
|
2431
|
+
flex-direction: column;
|
|
2432
|
+
align-self: stretch;
|
|
2424
2433
|
}
|
|
2425
2434
|
header.navheader h1 .btn2 {
|
|
2426
|
-
padding:
|
|
2435
|
+
padding: 5px;
|
|
2427
2436
|
width: 100%;
|
|
2428
2437
|
box-sizing: border-box;
|
|
2429
2438
|
}
|
|
2430
2439
|
header.navheader h1 {
|
|
2431
|
-
|
|
2440
|
+
display: flex;
|
|
2441
|
+
flex-direction: column;
|
|
2442
|
+
flex: 1 1 auto;
|
|
2443
|
+
height: auto;
|
|
2432
2444
|
overflow: auto;
|
|
2433
|
-
display: block;
|
|
2434
2445
|
}
|
|
2435
2446
|
.mode-selector {
|
|
2436
2447
|
flex-direction: column;
|
|
@@ -2450,11 +2461,18 @@ body.dark .mode-selector .btn2.selected {
|
|
|
2450
2461
|
}
|
|
2451
2462
|
main,
|
|
2452
2463
|
iframe.mainframe {
|
|
2453
|
-
margin-left:
|
|
2454
|
-
width:
|
|
2464
|
+
margin-left: 0;
|
|
2465
|
+
width: auto;
|
|
2466
|
+
flex: 1 1 auto;
|
|
2467
|
+
min-width: 0;
|
|
2455
2468
|
}
|
|
2456
2469
|
main .container {
|
|
2457
|
-
margin-left:
|
|
2470
|
+
margin-left: 0 !important;
|
|
2471
|
+
}
|
|
2472
|
+
.appcanvas {
|
|
2473
|
+
margin-left: 0;
|
|
2474
|
+
flex: 1 1 auto;
|
|
2475
|
+
min-width: 0;
|
|
2458
2476
|
}
|
|
2459
2477
|
.app-icon {
|
|
2460
2478
|
display: block;
|
package/server/views/app.ejs
CHANGED
|
@@ -781,6 +781,8 @@ body.dark .frame-link.selected {
|
|
|
781
781
|
*/
|
|
782
782
|
min-width: 0;
|
|
783
783
|
overflow: hidden;
|
|
784
|
+
white-space: nowrap;
|
|
785
|
+
text-overflow: ellipsis;
|
|
784
786
|
/*
|
|
785
787
|
margin-right: 10px;
|
|
786
788
|
*/
|
|
@@ -2765,19 +2767,52 @@ body.dark .pinokio-fork-dropdown-remote, body.dark .pinokio-publish-dropdown-rem
|
|
|
2765
2767
|
*/
|
|
2766
2768
|
@media only screen and (max-width: 768px) {
|
|
2767
2769
|
body {
|
|
2770
|
+
display: flex !important;
|
|
2768
2771
|
flex-direction: row !important;
|
|
2772
|
+
align-items: stretch;
|
|
2769
2773
|
}
|
|
2770
2774
|
body aside {
|
|
2771
2775
|
display: none;
|
|
2772
2776
|
}
|
|
2777
|
+
header.navheader {
|
|
2778
|
+
position: relative;
|
|
2779
|
+
top: auto;
|
|
2780
|
+
left: auto;
|
|
2781
|
+
height: auto;
|
|
2782
|
+
min-height: 0;
|
|
2783
|
+
/*
|
|
2784
|
+
width: 55px;
|
|
2785
|
+
min-width: 55px;
|
|
2786
|
+
max-width: 55px;
|
|
2787
|
+
*/
|
|
2788
|
+
display: flex;
|
|
2789
|
+
flex-direction: column;
|
|
2790
|
+
align-self: stretch;
|
|
2791
|
+
overflow: auto;
|
|
2792
|
+
flex-shrink: 0;
|
|
2793
|
+
backdrop-filter: none;
|
|
2794
|
+
}
|
|
2795
|
+
header.navheader h1 {
|
|
2796
|
+
display: flex;
|
|
2797
|
+
flex-direction: column;
|
|
2798
|
+
flex: 1 1 auto;
|
|
2799
|
+
height: auto;
|
|
2800
|
+
overflow: auto;
|
|
2801
|
+
}
|
|
2773
2802
|
.appcanvas {
|
|
2774
|
-
margin-left:
|
|
2803
|
+
margin-left: 0;
|
|
2804
|
+
flex: 1 1 auto;
|
|
2805
|
+
min-width: 0;
|
|
2775
2806
|
}
|
|
2776
2807
|
header.navheader.minimized + .appcanvas {
|
|
2777
2808
|
margin-left: 0;
|
|
2778
2809
|
}
|
|
2779
2810
|
main, iframe.mainframe {
|
|
2780
2811
|
padding-left: 0;
|
|
2812
|
+
margin-left: 0;
|
|
2813
|
+
width: auto;
|
|
2814
|
+
flex: 1 1 auto;
|
|
2815
|
+
min-width: 0;
|
|
2781
2816
|
}
|
|
2782
2817
|
.appcanvas > aside .menu-container {
|
|
2783
2818
|
padding: 8px 0 0;
|
|
@@ -2859,6 +2894,9 @@ body.dark .pinokio-fork-dropdown-remote, body.dark .pinokio-publish-dropdown-rem
|
|
|
2859
2894
|
<a class='home' href="/home">
|
|
2860
2895
|
<img class='icon' src="/pinokio-black.png">
|
|
2861
2896
|
</a>
|
|
2897
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
2898
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
2899
|
+
</button>
|
|
2862
2900
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
2863
2901
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
2864
2902
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -2875,9 +2913,6 @@ body.dark .pinokio-fork-dropdown-remote, body.dark .pinokio-publish-dropdown-rem
|
|
|
2875
2913
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
2876
2914
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
2877
2915
|
</a>
|
|
2878
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
2879
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
2880
|
-
</button>
|
|
2881
2916
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
2882
2917
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
2883
2918
|
</button>
|
|
@@ -194,6 +194,9 @@ pre {
|
|
|
194
194
|
<header class='navheader grabbable'>
|
|
195
195
|
<h1>
|
|
196
196
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
197
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
198
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
199
|
+
</button>
|
|
197
200
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
198
201
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
199
202
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -205,9 +208,6 @@ pre {
|
|
|
205
208
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
206
209
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
207
210
|
</a>
|
|
208
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
209
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
210
|
-
</button>
|
|
211
211
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
212
212
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
213
213
|
</button>
|
package/server/views/connect.ejs
CHANGED
|
@@ -813,6 +813,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
813
813
|
<header class='navheader grabbable'>
|
|
814
814
|
<h1>
|
|
815
815
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
816
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
817
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
818
|
+
</button>
|
|
816
819
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
817
820
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
818
821
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -830,9 +833,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
830
833
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
831
834
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
832
835
|
</a>
|
|
833
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
834
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
835
|
-
</button>
|
|
836
836
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
837
837
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
838
838
|
</button>
|
|
@@ -205,7 +205,6 @@ body.dark header .home {
|
|
|
205
205
|
*/
|
|
206
206
|
header .home {
|
|
207
207
|
color: var(--light-color);
|
|
208
|
-
padding: 10px;
|
|
209
208
|
}
|
|
210
209
|
body.dark hr {
|
|
211
210
|
background: white;
|
|
@@ -327,6 +326,9 @@ iframe {
|
|
|
327
326
|
<header class='navheader grabbable'>
|
|
328
327
|
<h1>
|
|
329
328
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
329
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
330
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
331
|
+
</button>
|
|
330
332
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
331
333
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
332
334
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -344,9 +346,6 @@ iframe {
|
|
|
344
346
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
345
347
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
346
348
|
</a>
|
|
347
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
348
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
349
|
-
</button>
|
|
350
349
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
351
350
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
352
351
|
</button>
|
|
@@ -122,6 +122,9 @@ body.frozen {
|
|
|
122
122
|
<header class='grabbable'>
|
|
123
123
|
<h1>
|
|
124
124
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
125
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
126
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
127
|
+
</button>
|
|
125
128
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
126
129
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
127
130
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -133,9 +136,6 @@ body.frozen {
|
|
|
133
136
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
134
137
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
135
138
|
</a>
|
|
136
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
137
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
138
|
-
</button>
|
|
139
139
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
140
140
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
141
141
|
</button>
|
package/server/views/explore.ejs
CHANGED
|
@@ -123,6 +123,9 @@ body main iframe {
|
|
|
123
123
|
<header class='navheader grabbable'>
|
|
124
124
|
<h1>
|
|
125
125
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
126
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
127
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
128
|
+
</button>
|
|
126
129
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
127
130
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
128
131
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -134,9 +137,6 @@ body main iframe {
|
|
|
134
137
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
135
138
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
136
139
|
</a>
|
|
137
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
138
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
139
|
-
</button>
|
|
140
140
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
141
141
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
142
142
|
</button>
|
package/server/views/form.ejs
CHANGED
|
@@ -159,6 +159,9 @@ document.addEventListener("DOMContentLoaded", async () => {
|
|
|
159
159
|
<a class='path' href="<%=path.path%>"><%-path.name%></a>
|
|
160
160
|
<% } %>
|
|
161
161
|
<% }) %>
|
|
162
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
163
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
164
|
+
</button>
|
|
162
165
|
<button class='btn2' id='screenshot' data-tippy-content="take a screenshot"><i class="fa-solid fa-camera"></i></button>
|
|
163
166
|
<div class='flexible'></div>
|
|
164
167
|
<a class='btn2' href="/columns" data-tippy-content="split into 2 columns">
|
|
@@ -167,9 +170,6 @@ document.addEventListener("DOMContentLoaded", async () => {
|
|
|
167
170
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
168
171
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
169
172
|
</a>
|
|
170
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
171
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
172
|
-
</button>
|
|
173
173
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
174
174
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
175
175
|
</button>
|
package/server/views/frame.ejs
CHANGED
|
@@ -43,6 +43,40 @@ main iframe {
|
|
|
43
43
|
height: 100%;
|
|
44
44
|
border: none;
|
|
45
45
|
}
|
|
46
|
+
@media only screen and (max-width: 768px) {
|
|
47
|
+
body {
|
|
48
|
+
flex-direction: row;
|
|
49
|
+
align-items: stretch;
|
|
50
|
+
}
|
|
51
|
+
header {
|
|
52
|
+
display: flex;
|
|
53
|
+
flex-direction: column;
|
|
54
|
+
width: 55px;
|
|
55
|
+
min-width: 55px;
|
|
56
|
+
max-width: 55px;
|
|
57
|
+
padding: 7px 0;
|
|
58
|
+
box-sizing: border-box;
|
|
59
|
+
overflow: auto;
|
|
60
|
+
align-self: stretch;
|
|
61
|
+
}
|
|
62
|
+
header h1 {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-direction: column;
|
|
65
|
+
flex: 1 1 auto;
|
|
66
|
+
height: auto;
|
|
67
|
+
overflow: auto;
|
|
68
|
+
}
|
|
69
|
+
header .flexible {
|
|
70
|
+
display: none;
|
|
71
|
+
}
|
|
72
|
+
main {
|
|
73
|
+
flex-grow: 1;
|
|
74
|
+
flex-basis: auto;
|
|
75
|
+
min-width: 0;
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
46
80
|
</style>
|
|
47
81
|
</head>
|
|
48
82
|
<body class='columns <%=theme%>' data-agent="<%=agent%>">
|
|
@@ -55,6 +89,9 @@ main iframe {
|
|
|
55
89
|
<a class='path' href="<%=path.path%>"><%-path.name%></a>
|
|
56
90
|
<% } %>
|
|
57
91
|
<% }) %>
|
|
92
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
93
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
94
|
+
</button>
|
|
58
95
|
<button class='btn2' id='screenshot' data-tippy-content="take a screenshot"><i class="fa-solid fa-camera"></i></button>
|
|
59
96
|
<div class='flexible'></div>
|
|
60
97
|
<a class='btn2' href="/columns" data-tippy-content="split into 2 columns">
|
|
@@ -63,9 +100,6 @@ main iframe {
|
|
|
63
100
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
64
101
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
65
102
|
</a>
|
|
66
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
67
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
68
|
-
</button>
|
|
69
103
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
70
104
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
71
105
|
</button>
|
package/server/views/github.ejs
CHANGED
|
@@ -235,6 +235,9 @@ ol {
|
|
|
235
235
|
<header class='navheader grabbable'>
|
|
236
236
|
<h1>
|
|
237
237
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
238
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
239
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
240
|
+
</button>
|
|
238
241
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
239
242
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
240
243
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -246,9 +249,6 @@ ol {
|
|
|
246
249
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
247
250
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
248
251
|
</a>
|
|
249
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
250
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
251
|
-
</button>
|
|
252
252
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
253
253
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
254
254
|
</button>
|
package/server/views/help.ejs
CHANGED
|
@@ -256,6 +256,9 @@ body.dark .item .tile .badge {
|
|
|
256
256
|
<header class='navheader grabbable'>
|
|
257
257
|
<h1>
|
|
258
258
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
259
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
260
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
261
|
+
</button>
|
|
259
262
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
260
263
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
261
264
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -267,9 +270,6 @@ body.dark .item .tile .badge {
|
|
|
267
270
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
268
271
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
269
272
|
</a>
|
|
270
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
271
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
272
|
-
</button>
|
|
273
273
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
274
274
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
275
275
|
</button>
|
package/server/views/index.ejs
CHANGED
|
@@ -418,6 +418,9 @@ body.dark aside .current.selected {
|
|
|
418
418
|
<h1>
|
|
419
419
|
<% if (ishome) { %>
|
|
420
420
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
421
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
422
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
423
|
+
</button>
|
|
421
424
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
422
425
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
423
426
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -435,9 +438,6 @@ body.dark aside .current.selected {
|
|
|
435
438
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
436
439
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
437
440
|
</a>
|
|
438
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
439
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
440
|
-
</button>
|
|
441
441
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
442
442
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
443
443
|
</button>
|
package/server/views/index2.ejs
CHANGED
|
@@ -267,14 +267,14 @@ body.dark .open-menu, body.dark .browse {
|
|
|
267
267
|
<% } %>
|
|
268
268
|
<% }) %>
|
|
269
269
|
<% if (ishome) { %>
|
|
270
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
271
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
272
|
+
</button>
|
|
270
273
|
<div class='nav-btns'>
|
|
271
274
|
<a class='btn2' href="<%=portal%>" target="_blank"><div><i class="fa-solid fa-question"></i></div><div>Help</div></a>
|
|
272
275
|
<button class='btn2' id='genlog'><div><i class="fa-solid fa-laptop-code"></i></div><div>Logs</div></button>
|
|
273
276
|
<a id='downloadlogs' download class='hidden btn2' href="/pinokio/logs.zip"><div><i class="fa-solid fa-download"></i></div><div>Download logs</div></a>
|
|
274
277
|
<a class='btn2' href="/home?mode=settings"><div><i class="fa-solid fa-gear"></i></div><div>Settings</div></a>
|
|
275
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
276
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
277
|
-
</button>
|
|
278
278
|
<button id='new-window' title='open a new window' class='btn2' data-agent="<%=agent%>"><div><i class="fa-solid fa-plus"></i></div><div>Window</div></button>
|
|
279
279
|
</div>
|
|
280
280
|
<% } %>
|
|
@@ -1521,6 +1521,9 @@ body.dark .ace-editor {
|
|
|
1521
1521
|
<header class='navheader grabbable'>
|
|
1522
1522
|
<h1>
|
|
1523
1523
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1524
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
1525
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
1526
|
+
</button>
|
|
1524
1527
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1525
1528
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1526
1529
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -1532,9 +1535,6 @@ body.dark .ace-editor {
|
|
|
1532
1535
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
1533
1536
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
1534
1537
|
</a>
|
|
1535
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
1536
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
1537
|
-
</button>
|
|
1538
1538
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
1539
1539
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
1540
1540
|
</button>
|
package/server/views/mini.ejs
CHANGED
|
@@ -756,6 +756,9 @@ body.dark .appcanvas {
|
|
|
756
756
|
<header class='navheader grabbable'>
|
|
757
757
|
<h1>
|
|
758
758
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
759
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
760
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
761
|
+
</button>
|
|
759
762
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
760
763
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
761
764
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -767,9 +770,6 @@ body.dark .appcanvas {
|
|
|
767
770
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
768
771
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
769
772
|
</a>
|
|
770
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
771
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
772
|
-
</button>
|
|
773
773
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
774
774
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
775
775
|
</button>
|
package/server/views/net.ejs
CHANGED
|
@@ -536,6 +536,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
536
536
|
<header class='navheader grabbable'>
|
|
537
537
|
<h1>
|
|
538
538
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
539
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
540
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
541
|
+
</button>
|
|
539
542
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
540
543
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
541
544
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -553,9 +556,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
553
556
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
554
557
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
555
558
|
</a>
|
|
556
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
557
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
558
|
-
</button>
|
|
559
559
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
560
560
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
561
561
|
</button>
|
package/server/views/network.ejs
CHANGED
|
@@ -1049,6 +1049,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
1049
1049
|
<header class='navheader grabbable'>
|
|
1050
1050
|
<h1>
|
|
1051
1051
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1052
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
1053
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
1054
|
+
</button>
|
|
1052
1055
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1053
1056
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1054
1057
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -1066,9 +1069,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
1066
1069
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
1067
1070
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
1068
1071
|
</a>
|
|
1069
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
1070
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
1071
|
-
</button>
|
|
1072
1072
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
1073
1073
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
1074
1074
|
</button>
|
|
@@ -419,6 +419,9 @@ table h3 {
|
|
|
419
419
|
<header class='navheader grabbable'>
|
|
420
420
|
<h1>
|
|
421
421
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
422
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
423
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
424
|
+
</button>
|
|
422
425
|
<button class='btn2' id='back'><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
423
426
|
<button class='btn2' id='forward'><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
424
427
|
<button class='btn2' id='refresh-page'><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -428,9 +431,6 @@ table h3 {
|
|
|
428
431
|
<button class='btn2' id='genlog'><div><i class="fa-solid fa-laptop-code"></i></div><div>Logs</div></button>
|
|
429
432
|
<a id='downloadlogs' download class='hidden btn2' href="/pinokio/logs.zip"><div><i class="fa-solid fa-download"></i></div><div>Download logs</div></a>
|
|
430
433
|
<a class='btn2' href="/home?mode=settings"><div><i class="fa-solid fa-gear"></i></div><div>Settings</div></a>
|
|
431
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
432
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
433
|
-
</button>
|
|
434
434
|
<button id='new-window' title='open a new window' class='btn2' data-agent="<%=agent%>"><div><i class="fa-solid fa-plus"></i></div><div>Window</div></button>
|
|
435
435
|
</div>
|
|
436
436
|
</h1>
|
|
@@ -402,6 +402,9 @@ input:checked + .slider:before {
|
|
|
402
402
|
<header class='navheader grabbable'>
|
|
403
403
|
<h1>
|
|
404
404
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
405
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
406
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
407
|
+
</button>
|
|
405
408
|
<button class='btn2' id='back'><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
406
409
|
<button class='btn2' id='forward'><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
407
410
|
<button class='btn2' id='refresh-page'><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -414,9 +417,6 @@ input:checked + .slider:before {
|
|
|
414
417
|
<button class='btn2' id='genlog'><div><i class="fa-solid fa-laptop-code"></i></div><div>Logs</div></button>
|
|
415
418
|
<a id='downloadlogs' download class='hidden btn2' href="/pinokio/logs.zip"><div><i class="fa-solid fa-download"></i></div><div>Download logs</div></a>
|
|
416
419
|
<a class='btn2' href="/home?mode=settings"><div><i class="fa-solid fa-gear"></i></div><div>Settings</div></a>
|
|
417
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
418
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
419
|
-
</button>
|
|
420
420
|
<button id='new-window' title='open a new window' class='btn2' data-agent="<%=agent%>"><div><i class="fa-solid fa-plus"></i></div><div>Window</div></button>
|
|
421
421
|
</div>
|
|
422
422
|
</h1>
|
|
@@ -1003,6 +1003,9 @@ body.dark .appcanvas {
|
|
|
1003
1003
|
<header class='navheader grabbable'>
|
|
1004
1004
|
<h1>
|
|
1005
1005
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1006
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
1007
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
1008
|
+
</button>
|
|
1006
1009
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1007
1010
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1008
1011
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -1014,9 +1017,6 @@ body.dark .appcanvas {
|
|
|
1014
1017
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
1015
1018
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
1016
1019
|
</a>
|
|
1017
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
1018
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
1019
|
-
</button>
|
|
1020
1020
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
1021
1021
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
1022
1022
|
</button>
|
package/server/views/review.ejs
CHANGED
|
@@ -938,6 +938,9 @@ body.dark .top-menu .btn2.selected {
|
|
|
938
938
|
<a class='home' href="/home">
|
|
939
939
|
<img class='icon' src="/pinokio-black.png">
|
|
940
940
|
</a>
|
|
941
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
942
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
943
|
+
</button>
|
|
941
944
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
942
945
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
943
946
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -954,9 +957,6 @@ body.dark .top-menu .btn2.selected {
|
|
|
954
957
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
955
958
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
956
959
|
</a>
|
|
957
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
958
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
959
|
-
</button>
|
|
960
960
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
961
961
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
962
962
|
</button>
|
|
@@ -709,6 +709,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
709
709
|
<header class='navheader grabbable'>
|
|
710
710
|
<h1>
|
|
711
711
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
712
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
713
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
714
|
+
</button>
|
|
712
715
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
713
716
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
714
717
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -726,9 +729,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
726
729
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
727
730
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
728
731
|
</a>
|
|
729
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
730
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
731
|
-
</button>
|
|
732
732
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
733
733
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
734
734
|
</button>
|
|
@@ -374,6 +374,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
374
374
|
<header class='navheader grabbable'>
|
|
375
375
|
<h1>
|
|
376
376
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
377
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
378
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
379
|
+
</button>
|
|
377
380
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
378
381
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
379
382
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -398,9 +401,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
398
401
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
399
402
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
400
403
|
</a>
|
|
401
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
402
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
403
|
-
</button>
|
|
404
404
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
405
405
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
406
406
|
</button>
|
package/server/views/setup.ejs
CHANGED
|
@@ -136,6 +136,9 @@ body {
|
|
|
136
136
|
<header class='grabbable'>
|
|
137
137
|
<h1>
|
|
138
138
|
<a class='home' href="/home"><%-logo%></a>
|
|
139
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
140
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
141
|
+
</button>
|
|
139
142
|
<button class='btn2' id='screenshot' data-tippy-content="take a screenshot"><i class="fa-solid fa-camera"></i></button>
|
|
140
143
|
<div class='flexible'></div>
|
|
141
144
|
<a class='btn2' href="/columns" data-tippy-content="split into 2 columns">
|
|
@@ -144,9 +147,6 @@ body {
|
|
|
144
147
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
145
148
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
146
149
|
</a>
|
|
147
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
148
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
149
|
-
</button>
|
|
150
150
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
151
151
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
152
152
|
</button>
|
|
@@ -152,6 +152,9 @@ body.dark .card {
|
|
|
152
152
|
<header class='grabbable'>
|
|
153
153
|
<h1>
|
|
154
154
|
<a class='path' href="/"><%-logo%></a>
|
|
155
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
156
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
157
|
+
</button>
|
|
155
158
|
<button class='btn2' id='screenshot' data-tippy-content="take a screenshot"><i class="fa-solid fa-camera"></i></button>
|
|
156
159
|
<div class='flexible'></div>
|
|
157
160
|
<a class='btn2' href="/columns" data-tippy-content="split into 2 columns">
|
|
@@ -160,9 +163,6 @@ body.dark .card {
|
|
|
160
163
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
161
164
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
162
165
|
</a>
|
|
163
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
164
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
165
|
-
</button>
|
|
166
166
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
167
167
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
168
168
|
</button>
|
|
@@ -370,6 +370,9 @@ body.dark .plugin-option:hover {
|
|
|
370
370
|
<header class='grabbable'>
|
|
371
371
|
<h1>
|
|
372
372
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png" alt="Pinokio"></a>
|
|
373
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
374
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
375
|
+
</button>
|
|
373
376
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
374
377
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
375
378
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -381,9 +384,6 @@ body.dark .plugin-option:hover {
|
|
|
381
384
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
382
385
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
383
386
|
</a>
|
|
384
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
385
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
386
|
-
</button>
|
|
387
387
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
388
388
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
389
389
|
</button>
|
package/server/views/tools.ejs
CHANGED
|
@@ -1099,6 +1099,9 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
1099
1099
|
<header class='navheader grabbable'>
|
|
1100
1100
|
<h1>
|
|
1101
1101
|
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1102
|
+
<button class='btn2' id='minimize-header' data-tippy-content="fullscreen" title='fullscreen'>
|
|
1103
|
+
<div><i class="fa-solid fa-expand"></i></div>
|
|
1104
|
+
</button>
|
|
1102
1105
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1103
1106
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1104
1107
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -1116,9 +1119,6 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
1116
1119
|
<a class='btn2' href="/rows" data-tippy-content="split into 2 rows">
|
|
1117
1120
|
<div><i class="fa-solid fa-table-columns fa-rotate-270"></i></div>
|
|
1118
1121
|
</a>
|
|
1119
|
-
<button class='btn2' id='minimize-header' data-tippy-content="minimize header" title='minimize header'>
|
|
1120
|
-
<div><i class="fa-solid fa-expand"></i></div>
|
|
1121
|
-
</button>
|
|
1122
1122
|
<button class='btn2' id='new-window' data-tippy-content="open a new window" title='open a new window' data-agent="<%=agent%>">
|
|
1123
1123
|
<div><i class="fa-solid fa-plus"></i></div>
|
|
1124
1124
|
</button>
|