1
0
mirror of https://github.com/django/django.git synced 2025-01-03 15:06:09 +00:00

Fixed #34592 -- Removed Safari/Chrome workaround for system fonts.

This commit is contained in:
minusf 2023-05-24 10:26:25 +02:00 committed by GitHub
parent eb9df03a43
commit 8b053c1e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 5 deletions

View File

@ -56,8 +56,6 @@ html[data-theme="light"],
--object-tools-hover-bg: var(--close-button-hover-bg); --object-tools-hover-bg: var(--close-button-hover-bg);
--font-family-primary: --font-family-primary:
-apple-system,
BlinkMacSystemFont,
"Segoe UI", "Segoe UI",
system-ui, system-ui,
Roboto, Roboto,

View File

@ -19,7 +19,7 @@
body { body {
max-width: 960px; max-width: 960px;
color: #525252; color: #525252;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-system, sans-serif; font-family: "Segoe UI", system-ui, sans-serif;
margin: 0 auto; margin: 0 auto;
} }
main { main {

View File

@ -6209,8 +6209,6 @@ class SeleniumTests(AdminSeleniumTestCase):
self.assertEqual( self.assertEqual(
fonts, fonts,
[ [
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI", "Segoe UI",
"system-ui", "system-ui",
"Roboto", "Roboto",