mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6bc3f9ce6f
Summary: The transparent mask around the dialogs was too dark. Code was hard to read. Now opacity has a value of 37, which makes the code easy to read, but still clearly indicates that the dialog is present. Test Plan: I was able to read the code easily through the mask. Reviewed By: epriestley Reviewers: epriestley CC: epriestley, tuomaspelkonen Differential Revision: 139
68 lines
1.1 KiB
CSS
68 lines
1.1 KiB
CSS
/**
|
|
* @provides aphront-dialog-view-css
|
|
*/
|
|
|
|
.aphront-dialog-view {
|
|
width: 480px;
|
|
padding: 8px;
|
|
background: #666;
|
|
margin: auto;
|
|
}
|
|
|
|
.aphront-dialog-head {
|
|
background: #003366;
|
|
border: none;
|
|
font-size: 15px;
|
|
padding: 5px 12px 6px;
|
|
color: #ffffff;
|
|
}
|
|
|
|
|
|
.aphront-dialog-body {
|
|
background: #ffffff;
|
|
padding: 16px 12px;
|
|
border: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.aphront-dialog-tail {
|
|
border: none;
|
|
background: #ededed;
|
|
padding: 0.5em;
|
|
text-align: right;
|
|
}
|
|
|
|
.aphront-dialog-tail button,
|
|
.aphront-dialog-tail a.button {
|
|
float: right;
|
|
margin-left: .5em;
|
|
}
|
|
|
|
.jx-client-dialog {
|
|
position: absolute;
|
|
z-index: 6;
|
|
}
|
|
|
|
.jx-mask {
|
|
opacity: .37;
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=37)";
|
|
filter: alpha(opacity=37);
|
|
background: #222;
|
|
position: absolute;
|
|
z-index: 5;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.aphront-exception-dialog {
|
|
width: 95%;
|
|
}
|
|
|
|
.aphront-exception-dialog .aphront-dialog-head {
|
|
background: #aa0000;
|
|
}
|