mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-06-02 00:43:57 +00:00
150 lines
3.9 KiB
Handlebars
150 lines
3.9 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 Two-Factor menu in Organization settings */
|
|
bit-nav-item[route="settings/two-factor"],
|
|
a[href$="/settings/two-factor"] {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide Business Owned checkbox */
|
|
app-org-info > form:nth-child(1) > div:nth-child(3) {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide the `This account is owned by a business` checkbox and label */
|
|
#ownedBusiness,
|
|
label[for^="ownedBusiness"] {
|
|
@extend %vw-hide;
|
|
}
|
|
|
|
/* Hide Business Name */
|
|
app-org-account form div bit-form-field.tw-block:nth-child(3) {
|
|
@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(6) {
|
|
@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;
|
|
}
|
|
|
|
/* Hide Log in with passkey */
|
|
app-login div.tw-flex:nth-child(4) {
|
|
@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 aggressively cache this endpoint, 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 */
|
|
{{#if webver "<2025.3.0"}}
|
|
/* Hide the register link on the login screen */
|
|
app-login form div + div + div + div + hr,
|
|
app-login form div + div + div + div + hr + p {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
{{/if}}
|
|
|
|
{{#if sso_only}}
|
|
/* Hide Master password login */
|
|
.master-password-login {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
|
|
{{#if sso_disabled}}
|
|
/* Hide the `Enterprise Single Sign-On` button on the login page */
|
|
a[routerlink="/sso"] {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/if}}
|
|
|
|
{{#unless mail_enabled}}
|
|
/* Hide `Email` 2FA if mail is not enabled */
|
|
app-two-factor-setup ul.list-group.list-group-2fa li.list-group-item:nth-child(1) {
|
|
@extend %vw-hide;
|
|
}
|
|
{{/unless}}
|
|
|
|
{{#unless yubico_enabled}}
|
|
/* Hide `YubiKey OTP security key` 2FA if it is not enabled */
|
|
app-two-factor-setup ul.list-group.list-group-2fa li.list-group-item:nth-child(4) {
|
|
@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}}
|