manager.css
2.24 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
* {
margin: 0;
padding: 0;
font-size: 12px;
box-sizing: border-box;
}
html, body {
height: 100%;
}
.error {
color: #f46d6d;
}
header {
position: relative;
padding: 10px;
height: 42px;
border-bottom: 1px solid #eee;
}
header h4 {
font-size: 16px;
color: rgba(0,0,0,.87);
}
#btn {
position: absolute;
display: block;
right: 10px;
top: 8px;
color: #fff;
font-size: 12px;
text-decoration: none;
padding: 5px 10px;
background: #108efc;
border-radius: 3px;
}
section {
position: absolute;
top: 42px;
bottom: 0;
width: 100%;
background: #f7f7f7;
padding: 10px;
}
section > div {
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
table {
width: 100%;
background: #fff;
border: 1px solid rgba(34,36,38,.15);
-webkit-box-shadow: none;
box-shadow: none;
border-radius: .28571429rem;
text-align: left;
color: rgba(0,0,0,.87);
border-collapse: separate;
border-spacing: 0;
word-break: break-all;
visibility: hidden;
}
table thead,
table tbody {
width: 100%;
}
table > div {
display: block;
height: 500px;
overflow: hidden;
overflow-y: auto;
}
table tr {
width: 100%;
background: #fff;
margin: 1em 0;
border: 1px solid rgba(34,36,38,.15);
-webkit-box-shadow: none;
box-shadow: none;
border-radius: .28571429rem;
text-align: left;
color: rgba(0,0,0,.87);
border-collapse: separate;
border-spacing: 0;
}
table tr:nth-child(2n) {
background-color: rgba(0,0,50,.02);
}
.no-record {
text-align: center;
font-size: 12px;
padding: 7px 0;
}
table thead th {
cursor: auto;
background: #f9fafb;
text-align: inherit;
color: rgba(0,0,0,.87);
padding: .92857143em .78571429em;
vertical-align: inherit;
font-style: none;
font-weight: 700;
text-transform: none;
border-bottom: 1px solid rgba(34,36,38,.1);
border-left: none;
}
table td {
padding: .78571429em .78571429em;
text-align: inherit;
border-top: 1px solid rgba(34,36,38,.1);
border-left: 1px solid rgba(34,36,38,.1);
}
tr td:first-child,
tr th:first-child {
border-left: none;
}
tbody tr:first-child td {
border-top: none;
}