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:
parent
eb9df03a43
commit
8b053c1e3c
@ -56,8 +56,6 @@ html[data-theme="light"],
|
||||
--object-tools-hover-bg: var(--close-button-hover-bg);
|
||||
|
||||
--font-family-primary:
|
||||
-apple-system,
|
||||
BlinkMacSystemFont,
|
||||
"Segoe UI",
|
||||
system-ui,
|
||||
Roboto,
|
||||
|
@ -19,7 +19,7 @@
|
||||
body {
|
||||
max-width: 960px;
|
||||
color: #525252;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-system, sans-serif;
|
||||
font-family: "Segoe UI", system-ui, sans-serif;
|
||||
margin: 0 auto;
|
||||
}
|
||||
main {
|
||||
|
@ -6209,8 +6209,6 @@ class SeleniumTests(AdminSeleniumTestCase):
|
||||
self.assertEqual(
|
||||
fonts,
|
||||
[
|
||||
"-apple-system",
|
||||
"BlinkMacSystemFont",
|
||||
"Segoe UI",
|
||||
"system-ui",
|
||||
"Roboto",
|
||||
|
Loading…
Reference in New Issue
Block a user