@a83/orbiter-admin 0.3.37 → 0.3.39
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/public/style.css +3 -2
- package/public/xfce.js +8 -0
package/package.json
CHANGED
package/public/style.css
CHANGED
|
@@ -2061,10 +2061,11 @@ a.xfce-sb-logo:hover { opacity: .8; }
|
|
|
2061
2061
|
|
|
2062
2062
|
.xfce-palette-inner {
|
|
2063
2063
|
width: min(560px, 92vw);
|
|
2064
|
-
background: var(--
|
|
2064
|
+
background: var(--bg1);
|
|
2065
2065
|
border: 1px solid var(--line);
|
|
2066
|
+
border-top: 2px solid var(--accent);
|
|
2066
2067
|
border-radius: 12px;
|
|
2067
|
-
box-shadow: 0 -2px
|
|
2068
|
+
box-shadow: 0 -2px 40px rgba(0,0,0,.4), 0 0 0 1px color-mix(in srgb,var(--accent) 20%,transparent);
|
|
2068
2069
|
overflow: hidden;
|
|
2069
2070
|
transform: translateY(14px);
|
|
2070
2071
|
opacity: 0;
|
package/public/xfce.js
CHANGED
|
@@ -1113,6 +1113,14 @@
|
|
|
1113
1113
|
return;
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
|
+
// / — open palette (when not typing in an input; Shift+7 on DE keyboard also produces '/')
|
|
1117
|
+
if (!mod && !e.altKey && e.key === '/' && !isEditing(e.target)) {
|
|
1118
|
+
e.preventDefault();
|
|
1119
|
+
if (palette && palette.classList.contains('open')) closePalette();
|
|
1120
|
+
else openPalette();
|
|
1121
|
+
return;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1116
1124
|
// ⌘⇧D — toggle HUD
|
|
1117
1125
|
if (mod && e.shiftKey && (e.key === 'd' || e.key === 'D')) {
|
|
1118
1126
|
e.preventDefault();
|