pinokiod 8.0.68 → 8.0.69
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/views/app.ejs
CHANGED
|
@@ -4115,13 +4115,10 @@ body.dark .disk-usage {
|
|
|
4115
4115
|
inset: 0;
|
|
4116
4116
|
z-index: 0;
|
|
4117
4117
|
border-radius: inherit;
|
|
4118
|
-
background:
|
|
4118
|
+
background: var(--pinokio-sidebar-notice-flash-bg);
|
|
4119
4119
|
opacity: 0;
|
|
4120
4120
|
pointer-events: none;
|
|
4121
4121
|
}
|
|
4122
|
-
body.dark .appcanvas.vertical > aside .menu-actions #save-space-tab::before {
|
|
4123
|
-
background: rgba(224, 165, 75, 0.18);
|
|
4124
|
-
}
|
|
4125
4122
|
.appcanvas.vertical > aside .menu-actions #save-space-tab > .tab {
|
|
4126
4123
|
position: relative;
|
|
4127
4124
|
z-index: 1;
|
|
@@ -4132,10 +4129,10 @@ body.dark .appcanvas.vertical > aside .menu-actions #save-space-tab::before {
|
|
|
4132
4129
|
justify-content: center;
|
|
4133
4130
|
flex: 0 0 auto;
|
|
4134
4131
|
padding: 1px 5px;
|
|
4135
|
-
border: 1px solid rgba(
|
|
4132
|
+
border: 1px solid rgba(255,255,255,0.28);
|
|
4136
4133
|
border-radius: 4px;
|
|
4137
|
-
color: #
|
|
4138
|
-
background:
|
|
4134
|
+
color: #fff;
|
|
4135
|
+
background: #b91c1c;
|
|
4139
4136
|
font-size: 10px;
|
|
4140
4137
|
font-weight: 600;
|
|
4141
4138
|
line-height: 1.2;
|
|
@@ -4146,9 +4143,9 @@ body.dark .appcanvas.vertical > aside .menu-actions #save-space-tab::before {
|
|
|
4146
4143
|
display: none;
|
|
4147
4144
|
}
|
|
4148
4145
|
body.dark .app-vault-result-badge {
|
|
4149
|
-
border-color: rgba(
|
|
4150
|
-
color: #
|
|
4151
|
-
background:
|
|
4146
|
+
border-color: rgba(255,255,255,0.22);
|
|
4147
|
+
color: #fff;
|
|
4148
|
+
background: #dc2626;
|
|
4152
4149
|
}
|
|
4153
4150
|
#save-space-tab.app-vault-result-attention::before {
|
|
4154
4151
|
animation: app-vault-result-attention 800ms cubic-bezier(0.22, 1, 0.36, 1);
|
|
@@ -8573,7 +8570,7 @@ body.dark .pinokio-custom-terminal-header {
|
|
|
8573
8570
|
<i class="fa-solid fa-hard-drive menu-action-leading-icon"></i>
|
|
8574
8571
|
<div class='display'>Disk Saver</div>
|
|
8575
8572
|
<% if (vaultAutomaticSupported) { %>
|
|
8576
|
-
<span class="app-vault-result-badge" data-app-vault-result-badge title="
|
|
8573
|
+
<span class="app-vault-result-badge" data-app-vault-result-badge title="New possible duplicate matches found" aria-hidden="true" <%=vaultAutomaticResultSignature ? '' : 'hidden'%>>New</span>
|
|
8577
8574
|
<% } %>
|
|
8578
8575
|
<div class='flexible'></div>
|
|
8579
8576
|
<% if (vaultAutomaticSupported) { %>
|
|
@@ -435,9 +435,13 @@ test("the app sidebar mirrors the shared layout state without another event stre
|
|
|
435
435
|
assert.match(template, /data-app-vault-mode/)
|
|
436
436
|
assert.match(template, /data-app-vault-result-badge/)
|
|
437
437
|
assert.match(template,
|
|
438
|
-
/class="app-vault-result-badge"[\s\S]{0,200}>
|
|
438
|
+
/class="app-vault-result-badge"[\s\S]{0,200}>New<\/span>/)
|
|
439
439
|
assert.match(template,
|
|
440
|
-
/\.app-vault-result-badge\s*\{[^}]*
|
|
440
|
+
/\.app-vault-result-badge\s*\{[^}]*color:\s*#fff;[^}]*background:\s*#b91c1c;/s)
|
|
441
|
+
assert.match(template,
|
|
442
|
+
/body\.dark \.app-vault-result-badge\s*\{[^}]*background:\s*#dc2626;/s)
|
|
443
|
+
assert.match(template,
|
|
444
|
+
/#save-space-tab::before\s*\{[^}]*background:\s*var\(--pinokio-sidebar-notice-flash-bg\);/s)
|
|
441
445
|
assert.doesNotMatch(template,
|
|
442
446
|
/\.app-vault-result-badge\s*\{[^}]*border-radius:\s*50%/s)
|
|
443
447
|
assert.match(template, /app-vault-mode\.js/)
|