table.scss
1.34 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
$border-color: #ebeef5;
.lbp-table {
position: relative;
overflow: hidden;
table {
position: absolute;
table-layout: fixed;
height: 100%;
background: white;
// 边框
td {
border-top: 2px solid $border-color;
border-left: 2px solid $border-color;
}
tr:last-child {
border-bottom: 2px solid $border-color;
border-right: 2px solid $border-color;
}
// 表头加粗
tr:first-child {
background-color: #f6f6f6;
font-size: 13px;
font-weight: bold;
}
// 居中对齐
td {
text-align: center;
}
}
.main-table-wrapper {
position: absolute;
left: 0px;
top: 0px;
overflow: auto;
width: 100%;
height: 100%;
}
.fixed-table-wrapper {
position: absolute;
left: 0px;
top: 0px;
overflow: hidden;
}
}
.lbp-table-theme-stripe {
table {
tbody tr {
// 奇
&:nth-child(odd):not(:first-child) {
background-color: #f6f6f6;
}
&:nth-child(even) {
background-color: white;
}
}
}
}
.lbp-table-theme-light-blue {
table {
tbody tr {
&:first-child {
background-color: #edf8ff;
}
&:nth-child(odd):not(:first-child) {
background-color: #edf8ff;
}
&:nth-child(even) {
background-color: white;
}
}
}
}