mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-09-09 18:25:58 +03:00
- Updated web-vault to v2025.7.0 - Updated admin JS and CSS files Signed-off-by: BlackDex <black.dex@gmail.com>
157 lines
4.1 KiB
Handlebars
157 lines
4.1 KiB
Handlebars
/**** START Static Vaultwarden changes ****/
|
|
/* This combines all selectors extending it into one */
|
|
%vw-hide {
|
|
display: none !important;
|
|
}
|
|
|
|
/* This allows searching for the combined style in the browsers dev-tools (look into the head tag) */
|
|
.vw-hide,
|
|
head {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide the Subscription Page tab */
|
|
bit-nav-item[route="settings/subscription"] {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide any link pointing to Free Bitwarden Families */
|
|
a[href$="/settings/sponsored-families"] {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide the `Enterprise Single Sign-On` button on the login page */
|
|
{{#if (webver ">=2025.5.1")}}
|
|
.vw-sso-login {
|
|
@extend %vw-hide;
|
|
}
|
|
{{else}}
|
|
app-root ng-component > form > div:nth-child(1) > div > button[buttontype="secondary"].\!tw-text-primary-600:nth-child(4) {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
|
|
/* Hide the `Log in with passkey` settings */
|
|
app-change-password app-webauthn-login-settings {
|
|
@extend %vw-hide;
|
|
}
|
|
/* Hide Log in with passkey on the login page */
|
|
{{#if (webver ">=2025.5.1")}}
|
|
.vw-passkey-login {
|
|
@extend %vw-hide;
|
|
}
|
|
{{else}}
|
|
app-root ng-component > form > div:nth-child(1) > div > button[buttontype="secondary"].\!tw-text-primary-600:nth-child(3) {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
|
|
/* Hide the or text followed by the two buttons hidden above */
|
|
{{#if (webver ">=2025.5.1")}}
|
|
.vw-or-text {
|
|
@extend %vw-hide;
|
|
}
|
|
{{else}}
|
|
app-root ng-component > form > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
|
|
/* Hide Two-Factor menu in Organization settings */
|
|
bit-nav-item[route="settings/two-factor"],
|
|
a[href$="/settings/two-factor"] {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide organization plans */
|
|
app-organization-plans > form > bit-section:nth-child(2) {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide Collection Management Form */
|
|
app-org-account form.ng-untouched:nth-child(5) {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide 'Member Access' Report Card from Org Reports */
|
|
app-org-reports-home > app-report-list > div.tw-inline-grid > div:nth-child(6) {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide Device Verification form at the Two Step Login screen */
|
|
app-security > app-two-factor-setup > form {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide unsupported Custom Role options */
|
|
bit-dialog div.tw-ml-4:has(bit-form-control input),
|
|
bit-dialog div.tw-col-span-4:has(input[formcontrolname*="access"], input[formcontrolname*="manage"]) {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Change collapsed menu icon to Vaultwarden */
|
|
bit-nav-logo bit-nav-item a:before {
|
|
content: "";
|
|
background-image: url("../images/icon-white.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
height: 32px;
|
|
display: block;
|
|
}
|
|
bit-nav-logo bit-nav-item .bwi-shield {
|
|
@extend %vw-hide;
|
|
}
|
|
/**** END Static Vaultwarden Changes ****/
|
|
/**** START Dynamic Vaultwarden Changes ****/
|
|
{{#if signup_disabled}}
|
|
/* From web vault 2025.1.2 and onwards, the signup button is hidden
|
|
when signups are disabled as the web vault checks the /api/config endpoint.
|
|
Note that the clients tend to cache this endpoint for about 1 hour, so it might
|
|
take a while for the change to take effect. To avoid the button appearing
|
|
when it shouldn't, we'll keep this style in place for a couple of versions */
|
|
/* Hide the register link on the login screen */
|
|
{{#if (webver "<2025.3.0")}}
|
|
app-login form div + div + div + div + hr,
|
|
app-login form div + div + div + div + hr + p {
|
|
@extend %vw-hide;
|
|
}
|
|
{{else}}
|
|
app-root a[routerlink="/signup"] {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#unless mail_2fa_enabled}}
|
|
/* Hide `Email` 2FA if mail is not enabled */
|
|
.providers-2fa-1 {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/unless}}
|
|
|
|
{{#unless yubico_enabled}}
|
|
/* Hide `YubiKey OTP security key` 2FA if it is not enabled */
|
|
.providers-2fa-3 {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/unless}}
|
|
|
|
{{#unless emergency_access_allowed}}
|
|
/* Hide Emergency Access if not allowed */
|
|
bit-nav-item[route="settings/emergency-access"] {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/unless}}
|
|
|
|
{{#unless sends_allowed}}
|
|
/* Hide Sends if not allowed */
|
|
bit-nav-item[route="sends"] {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/unless}}
|
|
/**** End Dynamic Vaultwarden Changes ****/
|
|
/**** Include a special user stylesheet for custom changes ****/
|
|
{{#if load_user_scss}}
|
|
{{> scss/user.vaultwarden.scss }}
|
|
{{/if}}
|