diff --git a/src/Umbraco.Infrastructure/WebAssets/BackOfficeWebAssets.cs b/src/Umbraco.Infrastructure/WebAssets/BackOfficeWebAssets.cs index 00cbdce532..c7e6df8cb2 100644 --- a/src/Umbraco.Infrastructure/WebAssets/BackOfficeWebAssets.cs +++ b/src/Umbraco.Infrastructure/WebAssets/BackOfficeWebAssets.cs @@ -55,15 +55,17 @@ namespace Umbraco.Cms.Infrastructure.WebAssets _runtimeMinifier.CreateCssBundle(UmbracoInitCssBundleName, BundlingOptions.NotOptimizedAndComposite, - FormatPaths("lib/bootstrap-social/bootstrap-social.css", - "assets/css/umbraco.min.css", - "lib/font-awesome/css/font-awesome.min.css")); + FormatPaths( + "assets/css/umbraco.min.css", + "lib/bootstrap-social/bootstrap-social.css", + "lib/font-awesome/css/font-awesome.min.css")); _runtimeMinifier.CreateCssBundle(UmbracoUpgradeCssBundleName, BundlingOptions.NotOptimizedAndComposite, - FormatPaths("assets/css/umbraco.min.css", - "lib/bootstrap-social/bootstrap-social.css", - "lib/font-awesome/css/font-awesome.min.css")); + FormatPaths( + "assets/css/umbraco.min.css", + "lib/bootstrap-social/bootstrap-social.css", + "lib/font-awesome/css/font-awesome.min.css")); _runtimeMinifier.CreateCssBundle(UmbracoPreviewCssBundleName, BundlingOptions.NotOptimizedAndComposite, diff --git a/src/Umbraco.Web.BackOffice/Security/BackOfficeExternalLoginProviderOptions.cs b/src/Umbraco.Web.BackOffice/Security/BackOfficeExternalLoginProviderOptions.cs index 977f981e52..d58f1cea17 100644 --- a/src/Umbraco.Web.BackOffice/Security/BackOfficeExternalLoginProviderOptions.cs +++ b/src/Umbraco.Web.BackOffice/Security/BackOfficeExternalLoginProviderOptions.cs @@ -27,7 +27,7 @@ namespace Umbraco.Cms.Web.BackOffice.Security public string ButtonStyle { get; set; } = "btn-openid"; - public string Icon { get; set; } = "fa-user"; + public string Icon { get; set; } = "fa fa-user"; /// /// Options used to control how users can be auto-linked/created/updated based on the external login provider