1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-26 06:28:19 +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:
tuomaspelkonen 2011-04-14 14:44:54 -07:00
parent ee1e2da8fb
commit 6bc3f9ce6f
2 changed files with 544 additions and 544 deletions

File diff suppressed because it is too large Load diff

View file

@ -44,9 +44,9 @@
}
.jx-mask {
opacity: .75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
filter: alpha(opacity=75);
opacity: .37;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=37)";
filter: alpha(opacity=37);
background: #222;
position: absolute;
z-index: 5;