mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
63d2b11cab
Summary: More grey tweaks, breaking these up so I can test and tweak each as needed. Test Plan: Review pages. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6866
76 lines
1.3 KiB
CSS
76 lines
1.3 KiB
CSS
/**
|
|
* @provides aphront-error-view-css
|
|
*/
|
|
|
|
.aphront-error-view,
|
|
.aphront-error-view-dialogue {
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
}
|
|
|
|
form.aphront-dialog-view .aphront-error-view {
|
|
margin: 8px 0;
|
|
}
|
|
|
|
.aphront-error-view {
|
|
margin: 16px;
|
|
}
|
|
.aphront-error-view-dialogue {
|
|
margin: 0px 0px 16px 0px;
|
|
}
|
|
|
|
.device-phone .aphront-error-view {
|
|
margin: 8px;
|
|
}
|
|
|
|
.aphront-error-view-body {
|
|
padding: 12px;
|
|
}
|
|
|
|
.aphront-error-view-head {
|
|
padding: 10px 10px 0 10px;
|
|
font-weight: bold;
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.aphront-error-view-list {
|
|
margin: 0 0 0 16px;
|
|
list-style: disc;
|
|
}
|
|
|
|
.aphront-error-severity-error {
|
|
color: {$red};
|
|
border-color: {$red};
|
|
background: {$lightred};
|
|
}
|
|
|
|
.aphront-error-severity-error .aphront-error-view-head {
|
|
color: {$red};
|
|
}
|
|
|
|
.aphront-error-severity-warning {
|
|
color: #bc7837;
|
|
border-color: {$yellow};
|
|
background: {$lightyellow};
|
|
}
|
|
|
|
.aphront-error-severity-warning .aphront-error-view-head {
|
|
color: #bc7837;
|
|
}
|
|
|
|
.aphront-error-severity-notice {
|
|
color: {$blue};
|
|
border-color: {$blue};
|
|
background: {$lightblue};
|
|
}
|
|
|
|
.aphront-error-severity-notice .aphront-error-view-head {
|
|
color: {$blue};
|
|
}
|
|
|
|
.aphront-error-severity-nodata {
|
|
border-color: {$lightgreyborder};
|
|
border-bottom: 1px solid {$greyborder};
|
|
color: {$greytext};
|
|
background-color: #fff;
|
|
}
|