root/trunk/dhtml/css/default.css

Revision 1, 2.1 kB (checked in by root, 4 years ago)

Initial import

Line 
1 .overlay_dialog img { border: none; }
2 .overlay_dialog { background-image: url('../images/overlay.png'); }
3
4 /* For PNG transparence in IE !! */
5 * html .overlay_dialog {
6         background-color: transparent;
7         back\ground-color: transparent;
8         background-image: none;
9         filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/overlay.png", sizingMethod="scale");
10 }
11
12 .dialog_nw {
13         width: 9px;
14         height: 23px;
15         background: transparent url(../images/top_left.gif) no-repeat 0 0;             
16 }
17
18 .dialog_n {
19         background: transparent url(../images/top_mid.gif) repeat-x 0 0;       
20         height: 23px;
21         width: 100%;
22 }
23
24 .dialog_ne {
25         width: 9px;
26         height: 23px;
27         background: transparent url(../images/top_right.gif) no-repeat 0 0;             
28 }
29
30 .dialog_e {
31         width: 2px;
32         height: 100%;
33         background: transparent url(../images/center_right.gif) repeat-y 0 0;   
34 }
35
36 .dialog_w {
37         width: 2px;
38         height: 100%;
39         background: transparent url(../images/center_left.gif) repeat-y 0 0;           
40 }
41
42 .dialog_sw {
43         width: 9px;
44         height: 19px;
45         background: transparent url(../images/bottom_left.gif) no-repeat 0 0;                   
46 }
47
48 .dialog_s {
49         background: transparent url(../images/bottom_mid.gif) repeat-x 0 0;             
50         height: 19px;
51         width: 100%;
52 }
53
54 .dialog_se {
55         width: 9px;
56         height: 19px;
57         background: transparent url(../images/bottom_right.gif) no-repeat 0 0;                 
58 }
59
60 .dialog_sizer {
61         width: 9px;
62         height: 19px;
63         background: transparent url(../images/sizer.gif) no-repeat 0 0;
64         cursor:se-resize;       
65 }
66
67 .dialog_close {
68         width: 14px;
69         height: 14px;
70         background: transparent url(../images/close.gif) no-repeat 0 0;                 
71         position:absolute;
72         top:5px;
73         left:8px;
74         cursor:pointer;
75         z-index:2000;
76 }
77
78 .dialog_title {
79         float:left;
80         height:14px;
81         font-size:12px;
82         text-align:center;
83         width:100%;
84 }
85
86 .dialog_content {
87         overflow:auto;
88         color: #DDD;
89         font-family: Tahoma, Arial, Sans Serif;
90         font-size: 10px;
91         background-color:#123;
92 }
93
94 .top_draggable, .bottom_draggable {
95   cursor:move;
96 }
97 /* DO NOT CHANGE THESE VALUES*/
98 .dialog {
99         display: block;
100         font-family: Tahoma, Arial, Sans Serif;
101         position: absolute;
102 }
103
104 .dialog * {
105         margin: 0px;
106         padding:0px;
107 }
108
109 .dialog table  { border-collapse: collapse; border-spacing: 0; width: 100%; }
110 .dialog td, th { padding: 0; }
111
Note: See TracBrowser for help on using the browser.