多单位版国产化地质资料管理系统
py
2025-07-08 98dbfdb7bca2dbee6802421fbafb8c909b54a356
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* NAVBAR */
 
/* !CPU HIGH, fix for IE6 shake when scroll */
* html,* html body {
  _background-image:url(about:blank);
  _background-attachment:fixed;
}
/* !CPU HIGH, fix for IE6 not support fixed position */
.navbar-fixed-top {
  _position:absolute;
  _bottom:auto;
  _top:expression(eval(document.documentElement.scrollTop));
}
/* !CPU HIGH, fix for IE6 not support fixed position */
.navbar-fixed-bottom {
  _position:absolute;
  _bottom:auto;
  _top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));
}
 
/* DROPDOWN */
.dropup,
.dropdown {
  *zoom:1;
}
 
/* CLOSE */
.close {
  _font-size: 15px;
}
 
.modal-header h3 {
  *display: inline;
  *zoom:1;
}
 
/* MODALS */
.modal-backdrop {
  _position: absolute;
  _top:0;
  _margin-top:0;
  _width:expression(eval(document.documentElement.scrollWidth));
  _height:expression(eval(document.documentElement.scrollHeight));
}
.modal {
  _position:absolute;
  _top:0;
  _margin-top:0;
  _top:expression(eval(document.documentElement.scrollTop));
}
.modal.fade.in {
  _filter:alpha(opacity=100);
}
.modal-backdrop {
  _filter: alpha(opacity=80);
}
.modal-body {
  _height:expression(this.scrollHeight > 400 ? "400px" : "auto");
}