-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathdataGrid.css
More file actions
93 lines (80 loc) · 2.09 KB
/
dataGrid.css
File metadata and controls
93 lines (80 loc) · 2.09 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
table {
border-collapse: collapse;
border-spacing: 0; }
:focus {
outline: none; }
.pagination {
display: inline-block;
box-sizing: border-box; }
.pagination > li {
display: inline-block;
vertical-align: middle;
width: auto;
height: 30px;
position: relative;
border-radius: 2px;
box-sizing: border-box; }
.pagination a {
color: #444;
font-size: 16px;
padding: 0 10px;
line-height: 30px;
display: inline-block;
text-decoration: none;
box-sizing: border-box; }
.pagination a .md-ripple-container {
border-radius: 2px; }
.pagination-none-svg svg {
display: none !important; }
.pagination-none-svg .pagination-prev a,
.pagination-none-svg .pagination-next a,
.pagination-none-svg .pagination-first a,
.pagination-none-svg .pagination-last a {
width: 30px;
text-align: center;
line-height: 24px; }
.pagination-page {
transition: background .1s ease-out, color .1s ease-out; }
.pagination-page.active {
background: #106cc8; }
.pagination-page.active a {
color: #fff; }
.pagination {
transition: background .1s ease-out, color .1s ease-out; }
.pagination .active {
background: #106cc8; }
.pagination .active a {
color: #fff; }
.table td {
border-bottom: 1px rgba(0, 0, 0, 0.12) solid;
padding: 12px; }
.table th {
padding: 12px;
border-bottom: 1px rgba(0, 0, 0, 0.12) solid; }
th.sortable {
line-height: 24px;
padding-right: 31px; }
th.sortable svg {
height: 18px;
width: 18px;
margin: 0 4px;
transition: fill .25s,-webkit-transform .25s;
transition: fill .25s,transform .25s;
vertical-align: middle;
display: none !important; }
th.sortable.sort-descent {
padding-right: 0; }
th.sortable.sort-descent svg {
display: inline-block !important; }
th.sortable.sort-ascent {
padding-right: 0; }
th.sortable.sort-ascent svg {
display: inline-block !important;
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.items-per-page .active {
background: #106cc8; }
.items-per-page .active a {
color: #fff; }
.items-per-page a {
cursor: pointer; }