Mercurial > defr > drupal > popups
comparison popups.css @ 0:76f9b43738f2
Popups 2.0-alpha5
author | Franck Deroche <franck@defr.org> |
---|---|
date | Fri, 31 Dec 2010 13:41:08 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:76f9b43738f2 |
---|---|
1 /* | |
2 ** Ajax popups dialog box styles | |
3 */ | |
4 | |
5 #popups-overlay { | |
6 position: absolute; | |
7 z-index: 8; | |
8 background: black; | |
9 top: 0; | |
10 } | |
11 #popups-loading { | |
12 position: absolute; | |
13 z-index: 10; | |
14 opacity: 0.75; | |
15 width: 100px; | |
16 height: 100px; | |
17 display: none; | |
18 } | |
19 .popups-box { | |
20 position: absolute; | |
21 z-index: 9; | |
22 background: white; | |
23 border: 1px solid black; | |
24 padding: 0.5em; | |
25 width: 600px; | |
26 overflow: auto; | |
27 } | |
28 .popups-title { | |
29 font-weight: bold; | |
30 margin-bottom: 0.25em; | |
31 } | |
32 .popups-title div.title { | |
33 float: left; | |
34 } | |
35 .popups-title .popups-close { | |
36 float: right; | |
37 } | |
38 .popups-title .popups-close a { | |
39 font-weight: normal; | |
40 } | |
41 /* Allow messages to be used as the title of the popups */ | |
42 .popups-box div.messages { | |
43 background: transparent; | |
44 border: none; | |
45 padding: 0; | |
46 margin: 0; | |
47 } |