mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
f8ffa393c4
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
38 lines
744 B
CSS
38 lines
744 B
CSS
/**
|
|
* @provides phabricator-fatal-config-template-css
|
|
*/
|
|
body {
|
|
overflow-y: scroll;
|
|
background: #f9f9f9;
|
|
margin: 0;
|
|
padding: 0;
|
|
font: 13px/1.231 -apple-system, system-ui, BlinkMacSystemFont,
|
|
'Segoe UI', 'Segoe UI Web Regular', 'Segoe UI Symbol',
|
|
'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
text-align: left;
|
|
-webkit-text-size-adjust: none;
|
|
}
|
|
|
|
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;
|
|
}
|