-
Notifications
You must be signed in to change notification settings - Fork 0
/
table-dynamic.css
130 lines (109 loc) · 2.1 KB
/
table-dynamic.css
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
123
124
125
126
127
128
129
130
/*!
CSS file for Table Dynamic Javascript
Created by: Amin Yusuf - https://silogos.github.io/me
Date: 6/28/2022
*/
.table-dynamic {
position: relative;
width: 100%;
max-width: 100%;
font-size: 12px;
}
.table-dynamic .table-wrapper {
width: 100%;
overflow-x: auto;
}
.table-dynamic table {
width: 100%;
}
.table-dynamic thead {
height: 46px;
color: #727272;
}
.table-dynamic thead>tr {
background: #F1F8FD !important;
}
.table-dynamic th {
vertical-align: middle;
}
.table-dynamic th,
td {
vertical-align: top;
text-align: center;
border: 0.5px solid #DBD9D9;
padding: 14px 10px;
}
.table-dynamic .no-data>td,
.table-dynamic .loading>td {
text-align: center;
vertical-align: middle;
}
.table-dynamic .table-navigation {
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px 0;
font-size: 13px;
}
.table-dynamic .total-count {
color: #979797;
}
.table-dynamic .navigation {
display: inline-block;
padding-left: 0;
border-radius: 4px;
}
.table-dynamic .page-list {
display: flex;
list-style: none;
height: 30px;
}
.table-dynamic .page-item {
cursor: default;
display: flex;
justify-content: center;
align-items: center;
padding: 0px 10px;
color: #0088cc;
background-color: #ffffff;
border: 1px solid #dddddd;
margin-right: -1px;
}
.table-dynamic .page-item:first-child {
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.table-dynamic .page-item:last-child {
margin-right: 0;
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.table-dynamic .page-item.active {
background-color: #0088cc;
color: #ffffff;
}
.table-dynamic .page-item.disabled {
cursor: not-allowed;
}
.table-dynamic .page-item.page-link {
cursor: pointer;
}
.table-dynamic.show-loading .table-loading {
display: flex;
}
.table-loading {
display: none;
position: absolute;
justify-content: center;
align-items: center;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(255 255 255 / 50%);
font-size: 18px;
color: black;
}
.table-loading::before {
content: "Loading...";
}