comparison gis_gui/lib/facebox/facebox.css @ 63:7f008e782563

add gui files to product via FileSystemSite
author casties
date Fri, 05 Nov 2010 18:52:55 +0100
parents
children
comparison
equal deleted inserted replaced
62:3905385c8854 63:7f008e782563
1 #facebox .b {
2 background:url(facebox/b.png);
3 }
4
5 #facebox .tl {
6 background:url(facebox/tl.png);
7 }
8
9 #facebox .tr {
10 background:url(facebox/tr.png);
11 }
12
13 #facebox .bl {
14 background:url(facebox/bl.png);
15 }
16
17 #facebox .br {
18 background:url(facebox/br.png);
19 }
20
21 #facebox {
22 position: absolute;
23 top: 200px;
24 left: 0;
25 z-index: 100;
26 text-align: left;
27 }
28
29 #facebox .popup {
30 position: relative;
31 }
32
33 #facebox table {
34 border-collapse: collapse;
35 }
36
37 #facebox td {
38 border-bottom: 0;
39 padding: 0;
40 }
41
42 #facebox .body {
43 padding: 10px;
44 background: #fff;
45 width: 370px;
46 }
47
48 #facebox .loading {
49 text-align: center;
50 }
51
52 #facebox .image {
53 text-align: center;
54 }
55
56 #facebox img {
57 border: 0;
58 margin: 0;
59 }
60
61 #facebox .footer {
62 border-top: 1px solid #DDDDDD;
63 padding-top: 5px;
64 margin-top: 10px;
65 text-align: right;
66 }
67
68 #facebox .tl, #facebox .tr, #facebox .bl, #facebox .br {
69 height: 10px;
70 width: 10px;
71 overflow: hidden;
72 padding: 0;
73 }
74
75 #facebox_overlay {
76 position: fixed;
77 top: 0px;
78 left: 0px;
79 height:100%;
80 width:100%;
81 }
82
83 .facebox_hide {
84 z-index:-100;
85 }
86
87 .facebox_overlayBG {
88 background-color: #000;
89 z-index: 99;
90 }
91
92 * html #facebox_overlay { /* ie6 hack */
93 position: absolute;
94 height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
95 }