pinokiod 3.62.0 → 3.64.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;
|
|
@@ -2431,9 +2432,11 @@ body.minimized .mode-selector .caption {
|
|
|
2431
2432
|
/*
|
|
2432
2433
|
body.minimized .appcanvas, body.minimized main {
|
|
2433
2434
|
*/
|
|
2435
|
+
/*
|
|
2434
2436
|
body.minimized .appcanvas {
|
|
2435
2437
|
padding-top: 20px;
|
|
2436
2438
|
}
|
|
2439
|
+
*/
|
|
2437
2440
|
body.minimized main, body.minimized iframe.mainframe {
|
|
2438
2441
|
/*
|
|
2439
2442
|
padding-top: 10px;
|
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'>
|