@a83/orbiter-admin 0.3.28 → 0.3.30

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.28",
3
+ "version": "0.3.30",
4
4
  "description": "Standalone admin server for Orbiter CMS",
5
5
  "type": "module",
6
6
  "main": "./src/server.js",
package/public/style.css CHANGED
@@ -2020,8 +2020,8 @@ a.xfce-sb-logo:hover { opacity: .8; }
2020
2020
  }
2021
2021
  .xfce-sb-logout:hover { color: var(--red); }
2022
2022
  .xfce-sb-palette-btn {
2023
- background: none; border: none; cursor: pointer; padding: 0 1px;
2024
- font-size: 11px; color: var(--mid); line-height: 1;
2023
+ background: none; border: none; cursor: pointer; padding: 0 3px;
2024
+ font-size: 14px; color: var(--mid); line-height: 1;
2025
2025
  font-family: var(--mono); transition: color .15s;
2026
2026
  }
2027
2027
  .xfce-sb-palette-btn:hover { color: var(--accent); }
@@ -2061,31 +2061,33 @@ a.xfce-sb-logo:hover { opacity: .8; }
2061
2061
 
2062
2062
  /* ── Command Palette ─────────────────────────────────────── */
2063
2063
  .xfce-palette {
2064
- display: none; position: fixed; inset: 0; z-index: 10000;
2064
+ display: none; position: fixed;
2065
+ top: 0; left: 0; right: 0;
2066
+ bottom: calc(var(--dock-h, 76px) + 12px);
2067
+ z-index: 10000;
2065
2068
  background: rgba(0,0,0,0);
2066
2069
  align-items: flex-end; justify-content: center;
2067
- padding-bottom: calc(var(--dock-h, 76px) + 28px);
2070
+ padding-bottom: 14px;
2068
2071
  transition: background .2s;
2069
2072
  }
2070
2073
  .xfce-palette.open {
2071
2074
  display: flex;
2072
- background: rgba(0,0,0,.76);
2075
+ background: rgba(0,0,0,.78);
2073
2076
  backdrop-filter: blur(5px);
2074
2077
  -webkit-backdrop-filter: blur(5px);
2075
2078
  }
2076
2079
 
2080
+ /* Palette inner — always dark, space aesthetic regardless of page theme */
2077
2081
  .xfce-palette-inner {
2078
- width: min(580px, 92vw);
2079
- background: color-mix(in srgb, var(--bg1) 97%, transparent);
2080
- backdrop-filter: blur(12px) saturate(180%);
2081
- -webkit-backdrop-filter: blur(12px) saturate(180%);
2082
- border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
2083
- border-top: 2px solid var(--accent);
2082
+ width: min(560px, 92vw);
2083
+ background: #0c0c1c;
2084
+ border: 1px solid rgba(120,90,210,.22);
2085
+ border-top: 2px solid var(--accent, #7c6fcd);
2084
2086
  border-radius: 12px;
2085
2087
  box-shadow:
2086
- 0 -2px 0 0 color-mix(in srgb, var(--accent) 40%, transparent),
2087
- 0 8px 48px rgba(0,0,0,.5),
2088
- 0 0 60px color-mix(in srgb, var(--accent) 12%, transparent);
2088
+ 0 0 0 1px rgba(100,70,190,.1),
2089
+ 0 16px 56px rgba(0,0,0,.8),
2090
+ 0 0 80px rgba(90,60,180,.18);
2089
2091
  overflow: hidden;
2090
2092
  transform: translateY(16px);
2091
2093
  opacity: 0;
@@ -2098,22 +2100,22 @@ a.xfce-sb-logo:hover { opacity: .8; }
2098
2100
 
2099
2101
  .xfce-palette-bar {
2100
2102
  display: flex; align-items: center; gap: 8px;
2101
- padding: 10px 14px; border-bottom: 1px solid var(--line);
2103
+ padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.06);
2102
2104
  }
2103
- .xfce-palette-cmd { color: var(--accent); font-size: 13px; flex-shrink: 0; }
2105
+ .xfce-palette-cmd { color: var(--accent, #7c6fcd); font-size: 14px; flex-shrink: 0; opacity: .8; }
2104
2106
  .xfce-palette-inp {
2105
2107
  flex: 1; background: none; border: none; outline: none;
2106
- font-family: var(--mono); font-size: 13px; color: var(--heading);
2108
+ font-family: var(--mono); font-size: 13px; color: #dde0ff;
2107
2109
  }
2108
- .xfce-palette-inp::placeholder { color: var(--muted); }
2109
- .xfce-palette-hint { font-size: 8px; color: var(--muted); font-family: var(--mono); white-space: nowrap; }
2110
+ .xfce-palette-inp::placeholder { color: rgba(160,160,200,.35); }
2111
+ .xfce-palette-hint { font-size: 8px; color: rgba(150,150,195,.35); font-family: var(--mono); white-space: nowrap; }
2110
2112
 
2111
2113
  .xfce-palette-results {
2112
- max-height: 450px; overflow-y: auto; padding: 6px 0;
2114
+ max-height: 380px; overflow-y: auto; padding: 6px 0;
2113
2115
  }
2114
2116
  .xfce-pal-group {
2115
- font-size: 8px; font-family: var(--mono); color: var(--mid);
2116
- letter-spacing: .08em; text-transform: uppercase;
2117
+ font-size: 8px; font-family: var(--mono); color: rgba(140,140,190,.5);
2118
+ letter-spacing: .1em; text-transform: uppercase;
2117
2119
  padding: 8px 14px 4px;
2118
2120
  }
2119
2121
  .xfce-pal-item {
@@ -2121,11 +2123,11 @@ a.xfce-sb-logo:hover { opacity: .8; }
2121
2123
  padding: 7px 14px; cursor: pointer; transition: background .1s;
2122
2124
  }
2123
2125
  .xfce-pal-item:hover, .xfce-pal-item.pal-active {
2124
- background: color-mix(in srgb, var(--accent) 12%, transparent);
2126
+ background: rgba(110,80,210,.16);
2125
2127
  }
2126
- .xfce-pal-icon { width: 20px; text-align: center; font-size: 13px; color: var(--accent); flex-shrink: 0; }
2127
- .xfce-pal-label { font-size: 12px; color: var(--heading); font-family: var(--mono); }
2128
- .xfce-pal-empty { padding: 20px 14px; color: var(--muted); font-size: 11px; font-family: var(--mono); }
2128
+ .xfce-pal-icon { width: 20px; text-align: center; font-size: 13px; color: var(--accent, #7c6fcd); flex-shrink: 0; opacity: .85; }
2129
+ .xfce-pal-label { font-size: 12px; color: rgba(215,215,255,.88); font-family: var(--mono); }
2130
+ .xfce-pal-empty { padding: 20px 14px; color: rgba(140,140,190,.5); font-size: 11px; font-family: var(--mono); }
2129
2131
 
2130
2132
  /* ── Toast host (above dock) ─────────────────────────────── */
2131
2133
  .xfce-toast-host {
package/public/xfce.js CHANGED
@@ -808,7 +808,7 @@
808
808
  : page === 'entries' && activeCol === col.id;
809
809
  var abbr = col.label.substring(0, 2);
810
810
  var item = makeDockItem(abbr, col.label, href, isActive, false);
811
- item.querySelector('.xfce-dock-icon').style.cssText = 'font-size:11px;font-family:var(--mono);letter-spacing:-.02em;line-height:1;opacity:1;';
811
+ item.querySelector('.xfce-dock-icon').style.cssText = 'font-size:14px;font-weight:700;font-family:var(--mono);letter-spacing:-.03em;line-height:1;opacity:1;';
812
812
  item.dataset.dockIdx = idx + 1;
813
813
 
814
814
  // Draft badge