mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 12:33:40 +00:00
fix: header color in zoom (#3128)
* fix: merge version ranges when adding existing package signer (#3125) * fix: merge version ranges when adding existing package signer Previously, add_package_signer unconditionally inserted the new version range, overwriting any existing authorization for that signer. Now it OR-merges the new range with the existing one, so running signer add multiple times accumulates permissions rather than replacing them. * add --merge flag to registry package signer add Default behavior remains overwrite. When --merge is passed, the new version range is OR-merged with the existing one, allowing admins to accumulate permissions incrementally. * add missing attribute to TS type * make merge optional * upsert instead of insert * VersionRange::None on upsert * fix: header color in zoom --------- Co-authored-by: Dominion5254 <musashidisciple@proton.me>
This commit is contained in:
@@ -100,9 +100,10 @@ import { getManifest } from 'src/app/utils/get-package-data'
|
||||
.title::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
inset: -0.5rem -1rem 0;
|
||||
background: var(--background);
|
||||
background-size: 1px;
|
||||
filter: blur(0.5rem);
|
||||
mask: linear-gradient(to bottom, black, transparent);
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user