pinokiod 3.19.87 → 3.19.88
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/views/app.ejs +2 -0
- package/server/views/git.ejs +14 -2
package/package.json
CHANGED
package/server/views/app.ejs
CHANGED
package/server/views/git.ejs
CHANGED
|
@@ -25,6 +25,7 @@ body {
|
|
|
25
25
|
}
|
|
26
26
|
aside {
|
|
27
27
|
width: 200px;
|
|
28
|
+
flex-shrink: 0;
|
|
28
29
|
overflow: auto;
|
|
29
30
|
}
|
|
30
31
|
aside .item.selected {
|
|
@@ -84,10 +85,21 @@ main iframe {
|
|
|
84
85
|
main img {
|
|
85
86
|
width: 100%;
|
|
86
87
|
}
|
|
88
|
+
main h2 i {
|
|
89
|
+
font-size: 24px;
|
|
90
|
+
margin-right: 5px;
|
|
91
|
+
}
|
|
87
92
|
main h2 {
|
|
93
|
+
text-transform: uppercase;
|
|
94
|
+
display: flex;
|
|
95
|
+
align-items: center;
|
|
88
96
|
padding: 10px;
|
|
89
97
|
margin: 0;
|
|
90
|
-
font-size:
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
background: rgba(0,0,0,0.06);
|
|
100
|
+
}
|
|
101
|
+
body.dark main h2 {
|
|
102
|
+
background: rgba(0,0,0,0.4);
|
|
91
103
|
}
|
|
92
104
|
body.dark .changes {
|
|
93
105
|
color: white;
|
|
@@ -261,7 +273,7 @@ body.dark *::-webkit-scrollbar-thumb {
|
|
|
261
273
|
<main>
|
|
262
274
|
<% if (changes && changes.length > 0) { %>
|
|
263
275
|
<aside>
|
|
264
|
-
<h2><i class="fa-
|
|
276
|
+
<h2><i class="fa-brands fa-git-alt"></i> Changes</h2>
|
|
265
277
|
<% changes.forEach(({ file, status, binary, diff, webpath }) => { %>
|
|
266
278
|
<a class='item' data-selector="<%=file%>" href="#<%=file%>"><%=file%></a>
|
|
267
279
|
<% }) %>
|