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);
|
--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,
|
||||||
|
@ -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 {
|
||||||
|
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user