mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
ed8118d50c
Summary: Ref T8099, this removes the gradient headers and their edge cases in Pinboard View, Setup Issues, Exceptions, and Document Heiriarchy. Test Plan: Tested each of these, grep for "gradient" and verify all states are gone. {F410708} {F410709} {F410710} {F410714} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D12944
25 lines
476 B
CSS
25 lines
476 B
CSS
/**
|
|
* @provides unhandled-exception-css
|
|
*/
|
|
|
|
.unhandled-exception-detail {
|
|
max-width: 760px;
|
|
margin: 24px auto;
|
|
background: #fff;
|
|
border: 1px solid #c0392b;
|
|
border-radius: 3px;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.unhandled-exception-detail .unhandled-exception-title {
|
|
color: #c0392b;
|
|
padding: 12px 8px;
|
|
border-bottom: 1px solid #f4dddb;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
margin: 0;
|
|
}
|
|
|
|
.unhandled-exception-detail .unhandled-exception-body {
|
|
padding: 16px 12px;
|
|
}
|