source: extensions/rv_gmaps/trunk/template/windows_13/themes/default.css @ 3447

Last change on this file since 3447 was 3447, checked in by rvelices, 15 years ago
  • added RV Map & Earth extension
  • Property svn:eol-style set to LF
File size: 2.6 KB
Line 
1.overlay_dialog {
2        background-color: #666666;
3        filter:alpha(opacity=60);
4        -moz-opacity: 0.6;
5        opacity: 0.6;
6}
7
8.overlay___invisible__ {
9  background-color: #666666;
10        filter:alpha(opacity=0);
11        -moz-opacity: 0;
12        opacity: 0;
13}
14
15.dialog_nw {
16        width: 9px;
17        height: 23px;
18        background: transparent url(default/top_left.gif) no-repeat 0 0;               
19}
20
21.dialog_n {
22        background: transparent url(default/top_mid.gif) repeat-x 0 0; 
23        height: 23px;
24}
25
26.dialog_ne {
27        width: 9px;
28        height: 23px;
29        background: transparent url(default/top_right.gif) no-repeat 0 0;               
30}
31
32.dialog_e {
33        width: 2px;
34        background: transparent url(default/center_right.gif) repeat-y 0 0;     
35}
36
37.dialog_w {
38        width: 2px;
39        background: transparent url(default/center_left.gif) repeat-y 0 0;             
40}
41
42.dialog_sw {
43        width: 9px;
44        height: 19px;
45        background: transparent url(default/bottom_left.gif) no-repeat 0 0;                     
46}
47
48.dialog_s {
49        background: transparent url(default/bottom_mid.gif) repeat-x 0 0;               
50        height: 19px;
51}
52
53.dialog_se {
54        width: 9px;
55        height: 19px;
56        background: transparent url(default/bottom_right.gif) no-repeat 0 0;                   
57}
58
59.dialog_sizer {
60        width: 9px;
61        height: 19px;
62        background: transparent url(default/sizer.gif) no-repeat 0 0;   
63        cursor:se-resize;       
64}
65
66.dialog_close {
67        width: 14px;
68        height: 14px;
69        background: transparent url(default/close.gif) no-repeat 0 0;                   
70        position:absolute;
71        top:5px;
72        left:8px;
73        cursor:pointer;
74        z-index:2000;
75}
76
77.dialog_minimize {
78        width: 14px;
79        height: 15px;
80        background: transparent url(default/minimize.gif) no-repeat 0 0;                       
81        position:absolute;
82        top:5px;
83        left:28px;
84        cursor:pointer;
85        z-index:2000;
86}
87
88.dialog_maximize {
89        width: 14px;
90        height: 15px;
91        background: transparent url(default/maximize.gif) no-repeat 0 0;                       
92        position:absolute;
93        top:5px;
94        left:49px;
95        cursor:pointer;
96        z-index:2000;
97}
98
99.dialog_title {
100        float:left;
101        height:14px;
102        font-family: Tahoma, Arial, sans-serif;
103        font-size:12px;
104        text-align:center;
105        width:100%;
106        color:#000;
107}
108
109.dialog_content {
110        overflow:auto;
111        color: #DDD;
112        font-family: Tahoma, Arial, sans-serif;
113        font-size: 10px;
114        background-color:#123;
115}
116
117.top_draggable, .bottom_draggable {
118  cursor:move;
119}
120
121.status_bar {
122  font-size:12px;
123}
124.status_bar input{
125  font-size:12px;
126}
127
128.wired_frame {
129        display: block;
130  position: absolute;
131  border: 1px #000 dashed;
132}
133
134/* DO NOT CHANGE THESE VALUES*/
135.dialog {
136        display: block;
137        position: absolute;
138}
139
140.dialog table.table_window  { 
141  border-collapse: collapse; 
142  border-spacing: 0; 
143  width: 100%;
144        margin: 0px;
145        padding:0px;
146}
147
148.dialog table.table_window td , .dialog table.table_window th { 
149  padding: 0; 
150}
151
152.dialog .title_window {
153  -moz-user-select:none;
154}                                                   
155
Note: See TracBrowser for help on using the repository browser.