source: branches/1.2/workflow/templates/default/css/lightbox.css @ 1349

Revision 1349, 1.2 KB checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
1/* - - - - - - - - - - - - - - - - - - - - -
2
3Title : Lightbox CSS
4Author : Kevin Hale
5URL : http://particletree.com/features/lightbox-gone-wild/
6
7Created : January 13, 2006
8Modified : February 1, 2006
9
10- - - - - - - - - - - - - - - - - - - - - */
11
12#lightbox{
13        display:none;
14        position: absolute;
15        top:50%;
16        left:50%;
17        z-index:9999;
18        width:600px;
19        min-height:50px;
20        max-height:400px;
21        height:auto !important;
22        height:400px;
23        margin:-220px 0 0 -300px;
24        border:1px solid #000000;
25/*      background:#FDFCE9;*/
26        background:#EEEEEE;
27        text-align:left;
28        overflow: auto;
29        padding: 5px;
30        height: expression(this.scrollHeight > 400 ? "400px" : "auto");/* solução para o problema de altura minima no IE */
31}
32
33.div_lightbox_body{
34        width:570px;
35        max-height:270px;
36        height:auto !important;
37        height:240px;
38        overflow: auto;
39}
40
41#lightbox[id]{
42        position:fixed;
43}
44
45#overlay{
46        display:none;
47        position:absolute;
48        top:0;
49        left:0;
50        width:100%;
51        height:100%;
52        z-index:5000;
53}
54#overlay[id]{
55        position:fixed;
56}
57
58#lightbox.done #lbLoadMessage{
59        display:none;
60}
61#lightbox.done #lbContent{
62        display:block;
63}
64#lightbox.loading #lbContent{
65        display:none;
66}
67#lightbox.loading #lbLoadMessage{
68        display:block;
69}
70
71/*
72#lightbox.done img{
73        width:100%;
74        height:100%;
75}
76*/
Note: See TracBrowser for help on using the repository browser.