@a83/orbiter-admin 0.3.30 → 0.3.31

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/style.css +5 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a83/orbiter-admin",
3
- "version": "0.3.30",
3
+ "version": "0.3.31",
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,20 +2061,17 @@ a.xfce-sb-logo:hover { opacity: .8; }
2061
2061
 
2062
2062
  /* ── Command Palette ─────────────────────────────────────── */
2063
2063
  .xfce-palette {
2064
- display: none; position: fixed;
2065
- top: 0; left: 0; right: 0;
2066
- bottom: calc(var(--dock-h, 76px) + 12px);
2067
- z-index: 10000;
2064
+ display: none; position: fixed; inset: 0; z-index: 10000;
2068
2065
  background: rgba(0,0,0,0);
2069
2066
  align-items: flex-end; justify-content: center;
2070
- padding-bottom: 14px;
2067
+ padding-bottom: calc(var(--dock-h, 76px) + 28px);
2071
2068
  transition: background .2s;
2072
2069
  }
2073
2070
  .xfce-palette.open {
2074
2071
  display: flex;
2075
- background: rgba(0,0,0,.78);
2076
- backdrop-filter: blur(5px);
2077
- -webkit-backdrop-filter: blur(5px);
2072
+ background: rgba(0,0,0,.72);
2073
+ backdrop-filter: blur(4px);
2074
+ -webkit-backdrop-filter: blur(4px);
2078
2075
  }
2079
2076
 
2080
2077
  /* Palette inner — always dark, space aesthetic regardless of page theme */