1
0
Fork 0
forked from 0x2620/oxjs

make layer opaque on click

This commit is contained in:
Rolux 2010-02-21 12:39:32 +05:30
commit 444fabdb39
3 changed files with 22 additions and 5 deletions

View file

@ -34,8 +34,8 @@ Dialog
*/
.OxThemeClassic .OxDialog {
-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
}
.OxThemeClassic .OxDialog .OxBar {

View file

@ -66,6 +66,7 @@ Dialog
//right: 0;
//bottom: 0;
//margin: auto;
z-index: 11;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}
@ -396,6 +397,8 @@ Layers
position: absolute;
width: 100%;
height: 100%;
background: rgb(0, 0, 0);
opacity: 0;
overflow: hidden;
z-index: 10;
}