1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@charset "utf-8";
/* CSS Document */
/*页面内的元素无法选中*/
*{
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
#tbHead{
    width:100%;
    height:30px;
    position:relative;
    overflow:hidden;
}
#tbHead table{
    position:absolute;
    width: 100%;
    border-collapse:collapse;
}
#tbHead table thead th{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
    background:url(../image/table_th_bg.gif) repeat-x;
}
#tbHead table tbody td{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
}
/*表格滚动部分*/
#tbWarn{
    width:100%;
    height:460px;
    position:relative;
    overflow: auto;
}
#tbWarn table{
    position:absolute;
    width: 100%;
    border-collapse:collapse;
    top:-30px;
}
#tbWarn table thead th{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
    background:url(../image/table_th_bg.gif) repeat-x;
}
#tbWarn table tbody td{
    border:1px solid #ccc;
    padding:6px 10px;
    text-align: center;
    white-space: nowrap;
}
#tbWarn table tbody tr:hover {
    background-color: #eee;
}
/*表格右键选中行的样式*/
.rightTr{
    color:#0000ff;
}
/*右键菜单样式*/
#rightMenu{
    display: none;
    position:absolute;
    background-color:#fff;
    color:#000;
    z-index: 998;
}
#rightMenu .revise,#rightMenu .ensure{
    border:1px solid #ccc;
    padding:4px 16px;
    background-color:#fff;
}
#rightMenu .revise:hover,#rightMenu .ensure:hover{
    background-color:green;
    color:#fff;
}