mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 07:12:41 +01:00
e11637e489
Summary: These colors are more inline with the look and feel and match the table colors. Test Plan: Used Inspect Element to test each color combination on an error page. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4593
67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
/**
|
|
* @provides aphront-error-view-css
|
|
*/
|
|
|
|
.aphront-error-view {
|
|
margin: 20px;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
}
|
|
|
|
.device-phone .aphront-error-view {
|
|
margin: 10px;
|
|
}
|
|
|
|
.aphront-error-view-body {
|
|
padding: 10px;
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
.aphront-error-view-head {
|
|
padding: 10px 10px 0 10px;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
}
|
|
|
|
.aphront-error-view-list {
|
|
margin: 0 0 0 20px;
|
|
list-style: disc;
|
|
}
|
|
|
|
.aphront-error-severity-error {
|
|
color: #b94a48;
|
|
border-color: #eed3d7;
|
|
background: #f2dede;
|
|
}
|
|
|
|
.aphront-error-severity-error .aphront-error-view-head {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.aphront-error-severity-warning {
|
|
color: #bc7837;
|
|
border-color: #ebdcc1;
|
|
background: #fcf8e3;
|
|
}
|
|
|
|
.aphront-error-severity-warning .aphront-error-view-head {
|
|
color: #bc7837;
|
|
background: #fcf8e3;
|
|
}
|
|
|
|
.aphront-error-severity-notice {
|
|
color: #3a87ad;
|
|
border-color: #a4bdec;
|
|
background: #dee7f8;
|
|
}
|
|
|
|
.aphront-error-severity-notice .aphront-error-view-head {
|
|
color: #3a87ad;
|
|
background: #dee7f8;
|
|
}
|
|
|
|
.aphront-error-severity-nodata {
|
|
border-color: #dfdfdf;
|
|
background: #f3f3f3;
|
|
color: #666;
|
|
}
|