pinokiod 3.61.0 → 3.63.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
|
@@ -797,6 +797,7 @@ form.search .btn.clone {
|
|
|
797
797
|
}
|
|
798
798
|
|
|
799
799
|
body {
|
|
800
|
+
box-sizing: border-box;
|
|
800
801
|
margin: 0;
|
|
801
802
|
font-family: Sans-serif;
|
|
802
803
|
font-size: 14px;
|
|
@@ -2361,7 +2362,9 @@ body.dark .mode-selector .btn2.selected {
|
|
|
2361
2362
|
height: 26px;
|
|
2362
2363
|
width: 100%;
|
|
2363
2364
|
z-index: 1000000000000;
|
|
2365
|
+
/*
|
|
2364
2366
|
display: none;
|
|
2367
|
+
*/
|
|
2365
2368
|
}
|
|
2366
2369
|
|
|
2367
2370
|
|
|
@@ -2444,9 +2447,11 @@ body.minimized main .container {
|
|
|
2444
2447
|
body.minimized .app-icon {
|
|
2445
2448
|
display: block;
|
|
2446
2449
|
}
|
|
2450
|
+
/*
|
|
2447
2451
|
body.minimized #dragger {
|
|
2448
2452
|
display: block;
|
|
2449
2453
|
}
|
|
2454
|
+
*/
|
|
2450
2455
|
body.minimized aside .tab.submenu {
|
|
2451
2456
|
padding: 10px;
|
|
2452
2457
|
}
|
package/server/views/editor.ejs
CHANGED
|
@@ -886,9 +886,9 @@ const reloadMemory = async () => {
|
|
|
886
886
|
</script>
|
|
887
887
|
</head>
|
|
888
888
|
<% if (install_required) { %>
|
|
889
|
-
<body class='columns frozen <%=theme%>'
|
|
889
|
+
<body class='columns frozen <%=theme%>'>
|
|
890
890
|
<% } else { %>
|
|
891
|
-
<body class='columns <%=theme%>'
|
|
891
|
+
<body class='columns <%=theme%>'>
|
|
892
892
|
<% } %>
|
|
893
893
|
<header class='navheader'>
|
|
894
894
|
<h1>
|
|
@@ -1010,9 +1010,9 @@ const reloadMemory = async () => {
|
|
|
1010
1010
|
</script>
|
|
1011
1011
|
</head>
|
|
1012
1012
|
<% if (install_required) { %>
|
|
1013
|
-
<body class='frozen <%=theme%>'
|
|
1013
|
+
<body class='frozen <%=theme%>'>
|
|
1014
1014
|
<% } else { %>
|
|
1015
|
-
<body class='<%=theme%>'
|
|
1015
|
+
<body class='<%=theme%>'>
|
|
1016
1016
|
<% } %>
|
|
1017
1017
|
<% if (!install_required) { %>
|
|
1018
1018
|
<header class='navheader2'>
|