-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTable.css
More file actions
110 lines (95 loc) · 1.88 KB
/
Table.css
File metadata and controls
110 lines (95 loc) · 1.88 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
.ReactTable .rt-resizable-header-content {
font-weight: normal;
font-size: 12px;
padding-right: 24px;
height: 56px;
white-space: nowrap;
text-overflow: ellipsis;
color: rgb(158, 158, 158);
position: relative;
background-color: inherit;
text-align: left;
}
.ReactTable .rt-tr {
padding-left: 24px;
padding-right: 24px;
height: 48px;
text-align: left;
font-size: 13px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
background-color: inherit;
}
.ReactTable .rt-td {
padding-left: 24px;
padding-right: 24px;
height: 48px;
text-align: left;
font-size: 13px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
background-color: inherit;
}
.ReactTable .rt-tbody .rt-td {
border-right: unset;
}
.ReactTable .rt-tr-group {
border-bottom: 1px solid rgb(188, 188, 188);
}
.ReactTable .rt-tr-group:hover {
background-color: #eeeeee;
}
.ReactTable .rt-table {
border-radius: 0 0 2px;
padding: 14px 24px 24px;
margin: 0;
}
.ReactTable .rt-thead.-header {
box-shadow: unset;
border-bottom: solid 1px rgba(0,0,0,0.05);
}
.ReactTable .rt-thead .rt-th, .ReactTable .rt-thead .rt-td {
border: unset;
}
.ReactTable {
border: unset
}
.ReactTable .-pagination {
box-shadow: unset;
border: unset;
padding-left: 24px;
padding-right: 24px;
height: 70px;
text-align: left;
font-size: 13px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
background-color: inherit;
}
.ReactTable .-pagination .-btn {
width: 45%;
height: 45%;
margin: 0 auto;
}
.ReactTable .-pagination div {
align-self: flex-start;
align-items: center;
}
.ReactTable .-pagination .-center {
flex: 2;
}
.rt-th input {
max-width: 150px;
float: left;
}
.select-wrap.-pageSizeOptions select{
background: transparent;
border: none;
cursor: pointer;
}
.-pageJump input {
background-color:rgba(0, 0, 0, 0.5)
}