This is a migrated thread and some comments may be shown as answers.

Inactive radwindow, opacity

1 Answer 95 Views
Window
This is a migrated thread and some comments may be shown as answers.
Olo
Top achievements
Rank 1
Olo asked on 25 Mar 2009, 09:17 AM
Hi,
I'm testing my webpages using IE6 XP.
And when I open 2 radwindows, the 2. inactive radwindow has opacity.
In my css I wrote:
 div.radwindow.inactivewindow, div.radwindow.radwindow_MidasBlue.normalwindow.transparentwindow td.corner, div.radwindow.radwindow_MidasBlue.normalwindow.transparentwindow td.titlebar, div.radwindow.radwindow_MidasBlue.transparentwindow td.footercenter  
        {  
      opacity: 1.0 !important;               /* CSS 3 , opera 9*/  
 
      filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100) !important;   /* MSIE */  
 
      -moz-opacity: 1.0 !important;   
        } 
but it doesn't work under IE6.
How to fix this?

1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 26 Mar 2009, 03:01 PM
Hello Olo,

With the new release (Q1 2009) the names of the classes are changed. You need to modify the class like this:

div.RadWindow.rwInactiveWindow .rwCorner, 
div.RadWindow.rwInactiveWindow .rwTitlebar, 
div.RadWindow.rwInactiveWindow .rwFooterCenter 
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100) !important; 
    opacity: 1 !important;  
    -moz-opacity: 1 !important; 


All the best,
Georgi Tunev
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
Window
Asked by
Olo
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or