2013-01-23 00:16:26 +01:00
|
|
|
/**
|
|
|
|
* @provides phabricator-fatal-config-template-css
|
|
|
|
*/
|
|
|
|
body {
|
|
|
|
overflow-y: scroll;
|
|
|
|
background: #f9f9f9;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
Added cross-platform default fonts
Summary:
`system-ui` is provided by modern browsers as [a cross-platform default font](https://caniuse.com/font-family-system-ui). Using this font [was a controversial choice back in 2017](https://infinnie.github.io/blog/2017/systemui.html). because it did not address i18n well and therefore it was removed from Bootstrap [twbs/bootstrap#22377](https://github.com/twbs/bootstrap/pull/22377). However, it was added back in Bootstrap v5 [twbs/bootstrap#30561](https://github.com/twbs/bootstrap/pull/30561) since it got better over time.
Fixes T15049.
Test Plan: Tested locally for now.
Reviewers: O1 Blessed Committers, avivey
Reviewed By: O1 Blessed Committers, avivey
Subscribers: Matthew, avivey, Cigaryno, 20after4, Ekubischta, speck, tobiaswiese, valerio.bozzolan
Maniphest Tasks: T15049
Differential Revision: https://we.phorge.it/D25021
2022-10-09 12:13:05 +02:00
|
|
|
font: 13px/1.231 -apple-system, system-ui, BlinkMacSystemFont,
|
|
|
|
'Segoe UI', 'Segoe UI Web Regular', 'Segoe UI Symbol',
|
2015-02-26 18:26:36 +01:00
|
|
|
'Helvetica Neue', Helvetica, Arial, sans-serif;
|
2013-01-23 00:16:26 +01:00
|
|
|
text-align: left;
|
|
|
|
-webkit-text-size-adjust: none;
|
|
|
|
}
|
2016-09-06 22:48:22 +02:00
|
|
|
|
|
|
|
body.in-flight {
|
|
|
|
background: #41506e;
|
|
|
|
color: #e0e0e0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.in-flight-error-detail {
|
|
|
|
max-width: 760px;
|
|
|
|
margin: 72px auto;
|
|
|
|
background: rgba(255, 255, 255, 0.25);
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 8px 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.in-flight-error-title {
|
|
|
|
padding: 12px 8px;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.in-flight-error-body {
|
|
|
|
padding: 4px 12px 12px;
|
|
|
|
}
|