From dce8e37d736df2c992c9ec5d25cea8be3069938f Mon Sep 17 00:00:00 2001 From: Stefan Melmuk Date: Fri, 8 Aug 2025 23:49:11 +0200 Subject: [PATCH] rename scss variable to sso_enabled --- src/api/web.rs | 2 +- src/static/templates/scss/vaultwarden.scss.hbs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/api/web.rs b/src/api/web.rs index 8a29a2c2..d8e35009 100644 --- a/src/api/web.rs +++ b/src/api/web.rs @@ -61,7 +61,7 @@ fn vaultwarden_css() -> Cached> { "mail_enabled": CONFIG.mail_enabled(), "sends_allowed": CONFIG.sends_allowed(), "signup_disabled": CONFIG.is_signup_disabled(), - "sso_disabled": !CONFIG.sso_enabled(), + "sso_enabled": CONFIG.sso_enabled(), "sso_only": CONFIG.sso_enabled() && CONFIG.sso_only(), "yubico_enabled": CONFIG._enable_yubico() && CONFIG.yubico_client_id().is_some() && CONFIG.yubico_secret_key().is_some(), }); diff --git a/src/static/templates/scss/vaultwarden.scss.hbs b/src/static/templates/scss/vaultwarden.scss.hbs index 143a1599..b031404d 100644 --- a/src/static/templates/scss/vaultwarden.scss.hbs +++ b/src/static/templates/scss/vaultwarden.scss.hbs @@ -21,21 +21,21 @@ a[href$="/settings/sponsored-families"] { } /* Hide the sso `Email` input field */ -{{#if sso_disabled}} +{{#if (not sso_enabled)}} .vw-email-sso { @extend %vw-hide; } {{/if}} /* Hide the default/continue `Email` input field */ -{{#if (not sso_disabled)}} +{{#if sso_enabled}} .vw-email-continue { @extend %vw-hide; } {{/if}} /* Hide the `Continue` button on the login page */ -{{#if (not sso_disabled)}} +{{#if sso_enabled}} .vw-continue-login { @extend %vw-hide; } @@ -43,7 +43,7 @@ a[href$="/settings/sponsored-families"] { /* Hide the `Enterprise Single Sign-On` button on the login page */ {{#if (webver ">=2025.5.1")}} -{{#if sso_disabled}} +{{#if (not sso_enabled)}} .vw-sso-login { @extend %vw-hide; } @@ -71,7 +71,7 @@ app-root ng-component > form > div:nth-child(1) > div > button[buttontype="secon /* Hide the or text followed by the two buttons hidden above */ {{#if (webver ">=2025.5.1")}} -{{#if (or sso_disabled sso_only)}} +{{#if (or (not sso_enabled) sso_only)}} .vw-or-text { @extend %vw-hide; } @@ -83,7 +83,7 @@ app-root ng-component > form > div:nth-child(1) > div:nth-child(3) > div:nth-chi {{/if}} /* Hide the `Other` button on the login page */ -{{#if (or sso_disabled sso_only)}} +{{#if (or (not sso_enabled) sso_only)}} .vw-other-login { @extend %vw-hide; }