pinokiod 3.185.0 → 3.186.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 +4 -0
- package/server/views/app.ejs +5 -1
package/package.json
CHANGED
package/server/public/style.css
CHANGED
|
@@ -295,8 +295,12 @@ body.dark .navheader2 .btn {
|
|
|
295
295
|
background: #F1F1F1 !important;
|
|
296
296
|
*/
|
|
297
297
|
}
|
|
298
|
+
body.dark .navheader {
|
|
299
|
+
background: rgba(255, 255, 255, 0.1);
|
|
300
|
+
}
|
|
298
301
|
.navheader {
|
|
299
302
|
backdrop-filter: blur(16px);
|
|
303
|
+
background: rgba(0, 0, 0, 0.04);
|
|
300
304
|
|
|
301
305
|
/*
|
|
302
306
|
padding: 15px 10px 5px;
|
package/server/views/app.ejs
CHANGED
|
@@ -165,7 +165,11 @@ body.dark .appcanvas_filler {
|
|
|
165
165
|
flex-direction: column;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
+
body.dark .appcanvas > aside {
|
|
169
|
+
background: rgba(255, 255, 255, 0.1);
|
|
170
|
+
}
|
|
168
171
|
.appcanvas > aside {
|
|
172
|
+
background: rgba(0, 0, 0, 0.04);
|
|
169
173
|
order: 0;
|
|
170
174
|
position: relative;
|
|
171
175
|
display: flex;
|
|
@@ -444,7 +448,7 @@ body.dark .appcanvas > aside .header-item.selected {
|
|
|
444
448
|
border-color: var(--sidebar-tab-outline);
|
|
445
449
|
*/
|
|
446
450
|
box-shadow: 0 4px 12px var(--pinokio-sidebar-tab-shadow);
|
|
447
|
-
background:
|
|
451
|
+
background: rgba(0,0,0,0.08) !important;
|
|
448
452
|
border-bottom: none;
|
|
449
453
|
z-index: 1;
|
|
450
454
|
}
|