@a83/orbiter-admin 0.3.29 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/public/style.css +20 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a83/orbiter-admin",
3
- "version": "0.3.29",
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
@@ -2077,18 +2077,17 @@ a.xfce-sb-logo:hover { opacity: .8; }
2077
2077
  -webkit-backdrop-filter: blur(5px);
2078
2078
  }
2079
2079
 
2080
+ /* Palette inner — always dark, space aesthetic regardless of page theme */
2080
2081
  .xfce-palette-inner {
2081
- width: min(580px, 92vw);
2082
- background: color-mix(in srgb, var(--bg1) 97%, transparent);
2083
- backdrop-filter: blur(12px) saturate(180%);
2084
- -webkit-backdrop-filter: blur(12px) saturate(180%);
2085
- border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
2086
- 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);
2087
2086
  border-radius: 12px;
2088
2087
  box-shadow:
2089
- 0 -2px 0 0 color-mix(in srgb, var(--accent) 40%, transparent),
2090
- 0 8px 48px rgba(0,0,0,.5),
2091
- 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);
2092
2091
  overflow: hidden;
2093
2092
  transform: translateY(16px);
2094
2093
  opacity: 0;
@@ -2101,22 +2100,22 @@ a.xfce-sb-logo:hover { opacity: .8; }
2101
2100
 
2102
2101
  .xfce-palette-bar {
2103
2102
  display: flex; align-items: center; gap: 8px;
2104
- padding: 10px 14px; border-bottom: 1px solid var(--line);
2103
+ padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.06);
2105
2104
  }
2106
- .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; }
2107
2106
  .xfce-palette-inp {
2108
2107
  flex: 1; background: none; border: none; outline: none;
2109
- font-family: var(--mono); font-size: 13px; color: var(--heading);
2108
+ font-family: var(--mono); font-size: 13px; color: #dde0ff;
2110
2109
  }
2111
- .xfce-palette-inp::placeholder { color: var(--muted); }
2112
- .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; }
2113
2112
 
2114
2113
  .xfce-palette-results {
2115
- max-height: 450px; overflow-y: auto; padding: 6px 0;
2114
+ max-height: 380px; overflow-y: auto; padding: 6px 0;
2116
2115
  }
2117
2116
  .xfce-pal-group {
2118
- font-size: 8px; font-family: var(--mono); color: var(--mid);
2119
- 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;
2120
2119
  padding: 8px 14px 4px;
2121
2120
  }
2122
2121
  .xfce-pal-item {
@@ -2124,11 +2123,11 @@ a.xfce-sb-logo:hover { opacity: .8; }
2124
2123
  padding: 7px 14px; cursor: pointer; transition: background .1s;
2125
2124
  }
2126
2125
  .xfce-pal-item:hover, .xfce-pal-item.pal-active {
2127
- background: color-mix(in srgb, var(--accent) 12%, transparent);
2126
+ background: rgba(110,80,210,.16);
2128
2127
  }
2129
- .xfce-pal-icon { width: 20px; text-align: center; font-size: 13px; color: var(--accent); flex-shrink: 0; }
2130
- .xfce-pal-label { font-size: 12px; color: var(--heading); font-family: var(--mono); }
2131
- .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); }
2132
2131
 
2133
2132
  /* ── Toast host (above dock) ─────────────────────────────── */
2134
2133
  .xfce-toast-host {