mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-04 19:08:27 +01:00
Decreased the opacity on the mask for dialogs
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
This commit is contained in:
parent
ee1e2da8fb
commit
6bc3f9ce6f
2 changed files with 544 additions and 544 deletions
File diff suppressed because it is too large
Load diff
|
@ -44,9 +44,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.jx-mask {
|
.jx-mask {
|
||||||
opacity: .75;
|
opacity: .37;
|
||||||
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=37)";
|
||||||
filter: alpha(opacity=75);
|
filter: alpha(opacity=37);
|
||||||
background: #222;
|
background: #222;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
|
|
Loading…
Add table
Reference in a new issue