mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
36 lines
586 B
CSS
36 lines
586 B
CSS
/**
|
|
* @provides aphront-error-view-css
|
|
*/
|
|
|
|
.aphront-error-view {
|
|
margin: 1em auto;
|
|
padding: 1em;
|
|
|
|
-webkit-box-shadow: 2px 2px 2px #999;
|
|
-mox-box-shadow: 2px 2px 2px #999;
|
|
box-shadow: 2px 2px 2px #999;
|
|
}
|
|
|
|
.aphront-error-width-default {
|
|
width: 720px;
|
|
}
|
|
|
|
.aphront-error-width-wide {
|
|
width: 95%;
|
|
}
|
|
|
|
.aphront-error-severity-error {
|
|
border: 1px solid #aa0000;
|
|
background: #f9b9bc;
|
|
}
|
|
|
|
.aphront-error-severity-warning {
|
|
border: 1px solid #888800;
|
|
background: #ffffdd;
|
|
}
|
|
|
|
.aphront-error-severity-notice {
|
|
border: 1px solid #000088;
|
|
background: #e3e3ff;
|
|
}
|
|
|