Fix: opacit du fond non pris en charge sur IE

This commit is contained in:
Regis Houssin 2008-01-11 10:12:09 +00:00
parent d1b7c08162
commit d2dfe7376f
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
.overlay_alert {
background-color: #ACBCBB;
/* filter:alpha(opacity=60); */
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}

View File

@ -1,13 +1,13 @@
.overlay_dialog {
background-color: #666666;
/* filter:alpha(opacity=60); */
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
.overlay___invisible__ {
background-color: #666666;
/* filter:alpha(opacity=0); */
filter:alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
}