/IZWebFileManager/HiddenItemStyle.cs
C# | 17 lines | 16 code | 1 blank | 0 comment | 0 complexity | 43ee12795cbd49d4232c6c64cd108c20 MD5 | raw file
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Web.UI.WebControls;
-
- namespace IZ.WebFileManager
- {
- class HiddenItemStyle : Style
- {
- protected override void FillStyleAttributes (System.Web.UI.CssStyleCollection attributes, System.Web.UI.IUrlResolutionService urlResolver) {
- base.FillStyleAttributes (attributes, urlResolver);
- attributes.Add ("opacity", "0.40");
- attributes.Add ("filter", "alpha(opacity=40)");
- attributes.Add ("-moz-opacity", ".40");
- }
- }
- }