From 221f09df82ea8416bebf350a46967dd4c2207d97 Mon Sep 17 00:00:00 2001 From: Alexander Nitsche Date: Fri, 17 Mar 2023 10:17:34 +0100 Subject: [PATCH] TASK: Use default "Noto Sans" font of Neos backend As of Neos 5, the Noto Sans font was missing from Neos.css. This has been fixed for Neos > 5 with neos/neos-development-collection#4005. We therefore consider Noto Sans to be generally available again and use it as the default font again. --- Resources/Public/Styles/Folder.css | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Resources/Public/Styles/Folder.css b/Resources/Public/Styles/Folder.css index 7ff4c3d..9064359 100644 --- a/Resources/Public/Styles/Folder.css +++ b/Resources/Public/Styles/Folder.css @@ -6,13 +6,7 @@ height: 100%; background-color: #222222; z-index: 9999; - /* - The Neos 7 backend normally uses the "Noto Sans" font, - which is no longer available as of 14 January 2023 in - the Neos.Neos package due to an incorrect file path in - Neos.css. - */ - font-family: sans-serif; + font-family: "Noto Sans", sans-serif; -webkit-font-smoothing: antialiased; }