blob: 523fc3b0c2659d2e41bb52b5a08abadb78570842 (
plain)
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
|
@import '~@swimlane/ngx-datatable/release/themes/material.css';
.home-container {
display: flex;
flex-direction: column;
height: 100%;
margin: 15px 20px;
margin-left: 15px;
margin-right: 15px;
.wrapper-btn-add-mc {
margin-top: 46px;
display: flex;
flex-direction: column;
align-items: center;
}
.btn-create {
width: 150px;
height: 36px;
}
}
.my-confrim-dialog .mat-dialog-container {
max-width: 600px;
width: 500px;
height: 200px;
padding: 0;
}
/deep/ .ui-tooltip .ui-tooltip-text {
font-size: 0.8em;
padding: 0.7em;
}
/deep/ .ui-tooltip {
max-width: 400px;
}
.ngx-datatable-monitoring-name {
&:hover {
color: #009fdb;
text-decoration: underline;
cursor: pointer;
}
}
.ngx-datatable.material .datatable-header .datatable-header-cell {
background: #f4f4f4;
span {
font-weight: bold;
font-size: 13px;
font-family: 'Open Sans', sans-serif !important;
}
}
.ngx-datatable .datatable-body-cell,
.ngx-datatable .datatable-header-cell {
border: 0.1px solid #d2d2d2;
}
.ngx-datatable.material.single-selection .datatable-body-row.active,
.ngx-datatable.material.single-selection
.datatable-body-row.active
.datatable-row-group,
.ngx-datatable.material.multi-selection .datatable-body-row.active,
.ngx-datatable.material.multi-selection
.datatable-body-row.active
.datatable-row-group,
.ngx-datatable.material.multi-click-selection .datatable-body-row.active,
.ngx-datatable.material.multi-click-selection
.datatable-body-row.active
.datatable-row-group {
background-color: #e6f6fb !important;
color: #5a5a5a;
}
.activeBtnWrapper .activeBtn {
opacity: 0;
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: -5px;
}
.activeBtnWrapper:hover .activeBtn {
opacity: 1;
}
// .ngx-datatable.fixed-row
// .datatable-scroll
// .datatable-body-row
// .datatable-body-cell {
// padding: 3px;
// display: flex;
// align-items: center;
// padding-left: 7px;
// }
.ngx-datatable.material {
box-shadow: none;
}
|