@a83/orbiter-admin 0.3.28 → 0.3.29
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 +8 -5
- package/public/xfce.js +1 -1
package/package.json
CHANGED
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
|
|
2024
|
-
font-size:
|
|
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,15 +2061,18 @@ a.xfce-sb-logo:hover { opacity: .8; }
|
|
|
2061
2061
|
|
|
2062
2062
|
/* ── Command Palette ─────────────────────────────────────── */
|
|
2063
2063
|
.xfce-palette {
|
|
2064
|
-
display: none; position: fixed;
|
|
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:
|
|
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,.
|
|
2075
|
+
background: rgba(0,0,0,.78);
|
|
2073
2076
|
backdrop-filter: blur(5px);
|
|
2074
2077
|
-webkit-backdrop-filter: blur(5px);
|
|
2075
2078
|
}
|
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:
|
|
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
|