-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathngx-ez-table.component.scss
76 lines (76 loc) · 1.6 KB
/
ngx-ez-table.component.scss
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
.ngx-ez-table {
position: relative;
box-sizing: border-box;
.ngx-ez-table__loading {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, .5);
z-index: 2;
}
* {
box-sizing: border-box;
}
&__wrapper {
width: 100%;
border-collapse: collapse;
}
td,
th {
border-bottom: 1px solid #e7e9ed;
padding: 10px 6px;
&:first-child {
padding-left: 15px;
}
&:last-child {
padding-right: 15px;
}
}
th {
font-size: 12px;
font-family: 'mulibold', 'Helvetica Neue', sans-serif;
color: rgba(0, 0, 0, 0.38);
text-transform: uppercase;
text-align: left;
}
td {
font-family: 'muliregular', 'Helvetica Neue', sans-serif;
font-size: 13px;
}
&__footer {
padding: 15px;
&:after {
content: '';
display: block;
clear: both;
}
}
&__footer-left {
float: left;
}
&__footer-right {
float: right;
}
&__sort-icon {
display: inline-block;
position: relative;
transform-origin: center center;
&--asc {
transform: rotate(-90deg);
}
&--desc {
transform: rotate(90deg);
}
}
&__row-details-toggle {
width: 40px;
cursor: pointer;
font-size: 12px;
color: rgba(0, 0, 0, 0.38);
}
&__row-details-wrapper {
padding: 0 !important;
}
}