pinokiod 7.3.8 → 7.3.9
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
|
@@ -1330,7 +1330,7 @@
|
|
|
1330
1330
|
return;
|
|
1331
1331
|
}
|
|
1332
1332
|
runner.classList.add('terminal-runner-minimal');
|
|
1333
|
-
const hiddenSelectors = ['#
|
|
1333
|
+
const hiddenSelectors = ['#status-window', '#progress-window', '.terminal-keyboard-button', '.terminal-resize-button'];
|
|
1334
1334
|
hiddenSelectors.forEach((selector) => {
|
|
1335
1335
|
const nodes = runner.querySelectorAll(selector);
|
|
1336
1336
|
if (!nodes || !nodes.length) {
|
|
@@ -1346,23 +1346,6 @@
|
|
|
1346
1346
|
});
|
|
1347
1347
|
}
|
|
1348
1348
|
|
|
1349
|
-
applyMobileRunnerLayout(runner) {
|
|
1350
|
-
if (!runner || !this.mobileInput || !this.mobileInput.prefersModalInput) {
|
|
1351
|
-
return;
|
|
1352
|
-
}
|
|
1353
|
-
const nodes = runner.querySelectorAll('#open-fs');
|
|
1354
|
-
if (!nodes || !nodes.length) {
|
|
1355
|
-
return;
|
|
1356
|
-
}
|
|
1357
|
-
nodes.forEach((node) => {
|
|
1358
|
-
if (!node) {
|
|
1359
|
-
return;
|
|
1360
|
-
}
|
|
1361
|
-
node.hidden = true;
|
|
1362
|
-
node.setAttribute('aria-hidden', 'true');
|
|
1363
|
-
});
|
|
1364
|
-
}
|
|
1365
|
-
|
|
1366
1349
|
initRunnerMenus() {
|
|
1367
1350
|
if (typeof document === 'undefined') {
|
|
1368
1351
|
return;
|
|
@@ -1394,7 +1377,6 @@
|
|
|
1394
1377
|
if (!this.minimalRunnerMode) {
|
|
1395
1378
|
this.attachForceResizeButton(runner, utilities);
|
|
1396
1379
|
}
|
|
1397
|
-
this.applyMobileRunnerLayout(runner);
|
|
1398
1380
|
this.applyMinimalRunnerLayout(runner);
|
|
1399
1381
|
});
|
|
1400
1382
|
}
|
package/server/views/layout.ejs
CHANGED
|
@@ -36,11 +36,9 @@
|
|
|
36
36
|
width: 100%;
|
|
37
37
|
box-sizing: border-box;
|
|
38
38
|
background: var(--layout-dragger-bg);
|
|
39
|
-
border-bottom: 1px solid var(--layout-dragger-border);
|
|
40
39
|
}
|
|
41
40
|
body.dark > #dragger {
|
|
42
41
|
background: var(--layout-dragger-bg);
|
|
43
|
-
border-bottom-color: var(--layout-dragger-border);
|
|
44
42
|
}
|
|
45
43
|
|
|
46
44
|
body[data-agent="electron"] {
|
|
@@ -53,6 +51,7 @@
|
|
|
53
51
|
|
|
54
52
|
body.dark {
|
|
55
53
|
--layout-background: #1b1c1d;
|
|
54
|
+
--layout-dragger-bg: var(--layout-background);
|
|
56
55
|
--layout-gutter-bg: rgba(255, 255, 255, 0.04);
|
|
57
56
|
--layout-dragger-border: rgba(255, 255, 255, 0.055);
|
|
58
57
|
/*
|
|
@@ -2985,9 +2985,6 @@ const reloadMemory = async () => {
|
|
|
2985
2985
|
<span class='starting hidden'><i class="fa-solid fa-circle-notch fa-spin"></i> Starting...</span>
|
|
2986
2986
|
<span class='stop hidden'><i class="fa-solid fa-stop"></i> Stop</span>
|
|
2987
2987
|
</div>
|
|
2988
|
-
<% if (locals.filepath) { %>
|
|
2989
|
-
<button class='btn' id='open-fs' data-filepath="<%=filepath%>" data-command="view"><i class="fa-solid fa-folder-open"></i> File Explorer</button>
|
|
2990
|
-
<% } %>
|
|
2991
2988
|
<% if (locals.protection_app_id) { %>
|
|
2992
2989
|
<button
|
|
2993
2990
|
type='button'
|