pinokiod 3.78.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 +1 -1
- package/server/public/style.css +15 -2
- package/server/views/columns.ejs +1 -1
- package/server/views/rows.ejs +1 -1
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;
|
package/server/views/columns.ejs
CHANGED