pinokiod 3.77.0 → 3.79.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
|
@@ -2384,16 +2384,29 @@ body.minimized header .dropdown-content {
|
|
|
2384
2384
|
}
|
|
2385
2385
|
|
|
2386
2386
|
body.minimized.dark header h1 #close-window {
|
|
2387
|
-
background:
|
|
2387
|
+
background: #222;
|
|
2388
2388
|
}
|
|
2389
2389
|
body.minimized header h1 #close-window {
|
|
2390
2390
|
order: 0;
|
|
2391
|
-
background:
|
|
2391
|
+
background: whitesmoke;
|
|
2392
2392
|
border-radius: 0;
|
|
2393
2393
|
position: sticky;
|
|
2394
2394
|
bottom: 0;
|
|
2395
2395
|
z-index: 10000000;
|
|
2396
2396
|
}
|
|
2397
|
+
|
|
2398
|
+
body.minimized.dark header h1 .dropdown {
|
|
2399
|
+
background: #222;
|
|
2400
|
+
}
|
|
2401
|
+
body.minimized header h1 .dropdown {
|
|
2402
|
+
position: sticky;
|
|
2403
|
+
bottom: 38px;
|
|
2404
|
+
background: whitesmoke;
|
|
2405
|
+
border-radius: 0;
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
|
|
2409
|
+
|
|
2397
2410
|
body.minimized header .home {
|
|
2398
2411
|
display: block;
|
|
2399
2412
|
position: sticky;
|
|
@@ -94,11 +94,13 @@ body.dark .urlbar input[type=url] {
|
|
|
94
94
|
}
|
|
95
95
|
body.minimized .mobile-link-button {
|
|
96
96
|
border-radius: 0;
|
|
97
|
+
margin: 0;
|
|
97
98
|
}
|
|
98
99
|
.mobile-link-button {
|
|
99
100
|
background: rgba(0,0,0,0.05);
|
|
100
101
|
padding: 5px;
|
|
101
102
|
flex-grow: 1;
|
|
103
|
+
margin: 0 5px;
|
|
102
104
|
}
|
|
103
105
|
.urlbar input[type=url] {
|
|
104
106
|
background: rgba(0,0,0,0.05);
|
package/server/views/columns.ejs
CHANGED
|
@@ -19,7 +19,7 @@ body {
|
|
|
19
19
|
display: none;
|
|
20
20
|
}
|
|
21
21
|
body.dark[data-agent='electron'] #dragger {
|
|
22
|
-
background:
|
|
22
|
+
background: #222;
|
|
23
23
|
}
|
|
24
24
|
body[data-agent='electron'] #dragger {
|
|
25
25
|
display: block;
|
|
@@ -49,7 +49,7 @@ body.dark {
|
|
|
49
49
|
background: #1B1C1D;
|
|
50
50
|
}
|
|
51
51
|
body.dark .gutter {
|
|
52
|
-
background: #
|
|
52
|
+
background: #222;
|
|
53
53
|
}
|
|
54
54
|
body.resizing, .gutter:hover {
|
|
55
55
|
cursor: col-resize;
|
|
@@ -212,7 +212,7 @@ body[data-agent='electron'] {
|
|
|
212
212
|
}
|
|
213
213
|
let existing_iframe = document.querySelector("iframe")
|
|
214
214
|
if (existing_iframe) {
|
|
215
|
-
document.body.
|
|
215
|
+
document.body.classList.add("single")
|
|
216
216
|
} else {
|
|
217
217
|
if (window.parent) {
|
|
218
218
|
// if all child iframes have been removed, remove self
|
package/server/views/rows.ejs
CHANGED
|
@@ -19,7 +19,7 @@ body {
|
|
|
19
19
|
display: none;
|
|
20
20
|
}
|
|
21
21
|
body.dark[data-agent='electron'] #dragger {
|
|
22
|
-
background:
|
|
22
|
+
background: #222;
|
|
23
23
|
}
|
|
24
24
|
body[data-agent='electron'] #dragger {
|
|
25
25
|
display: block;
|
|
@@ -44,7 +44,7 @@ body.dark {
|
|
|
44
44
|
background: #1B1C1D;
|
|
45
45
|
}
|
|
46
46
|
body.dark .gutter {
|
|
47
|
-
background: #
|
|
47
|
+
background: #222;
|
|
48
48
|
}
|
|
49
49
|
.gutter {
|
|
50
50
|
background: whitesmoke;
|
|
@@ -219,8 +219,7 @@ body[data-agent='electron'] {
|
|
|
219
219
|
}
|
|
220
220
|
let existing_iframe = document.querySelector("iframe")
|
|
221
221
|
if (existing_iframe) {
|
|
222
|
-
|
|
223
|
-
document.body.className = "single"
|
|
222
|
+
document.body.classList.add("single")
|
|
224
223
|
} else {
|
|
225
224
|
if (window.parent) {
|
|
226
225
|
// if all child iframes have been removed, remove self
|