1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| /* myDialogs */
| .popup_dialog {
| /* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
| position: absolute;
| top: 250px;
| left: 0;
| width: 300px;
| background-color: #DDE;
| padding: 10px;
| border: dotted 4px #F55;
| z-index: 100;
| text-align: center;
| }
| body > div.popup_dialog {
| /* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
| position: fixed;
| }
| div.popup_dialog {
| /* IE5.5+/Win - this is more specific than the IE 5.0 version */
| top: expression( ( 150 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
| }
| .popup_control {
| cursor: pointer;
| cursor: hand;
| font-size: 10px;
| font-size:14px;
| }
| .popup_headerbar {
| text-align: right;
| }
| .popup_buttons {
| margin: 10px 0 0 0;
| text-align: center;
| }
| .popup_buttons input {
| /*float: left;*/
| font-size:14px;
| padding-left:5px;
| padding-right:5px;
| }
| .popup_content {
| display: block;
| padding: 10px;
| font-size:14px;
| }
|
|