@a83/orbiter-admin 0.3.38 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a83/orbiter-admin",
3
- "version": "0.3.38",
3
+ "version": "0.3.39",
4
4
  "description": "Standalone admin server for Orbiter CMS",
5
5
  "type": "module",
6
6
  "main": "./src/server.js",
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(--glass-bg, color-mix(in srgb, var(--bg1) 90%, transparent));
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 32px rgba(0,0,0,.25), 0 0 0 1px color-mix(in srgb,var(--accent) 20%,transparent);
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,8 +1113,8 @@
1113
1113
  return;
1114
1114
  }
1115
1115
 
1116
- // / — open palette (when not typing in an input)
1117
- if (!mod && !e.shiftKey && !e.altKey && e.key === '/' && !isEditing(e.target)) {
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
1118
  e.preventDefault();
1119
1119
  if (palette && palette.classList.contains('open')) closePalette();
1120
1120
  else openPalette();