blob: f665fdb003c413ff04ca9bacbaba80470bbba83a (
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
|
.intent-resource_tab {
width: 103%;
margin-left: 60px!important;
margin-top: -35px!important;
.ant-tabs-content.ant-tabs-content-animated{
padding: 20px 0!important;
}
}
.slicing-resource-table{
padding: 20px!important;
}
.intent-resource-table-list{
padding: 20px!important;
nz-table{
.ant-table-wrapper{
.ant-table-body{
th,td{
word-break: break-word!important;
}
}
}
}
}
nz-select {
width: 200px;
}
.task_status {
margin-bottom: 20px;
span {
margin-right: 5%;
}
}
.action-icon {
display: inline-block;
vertical-align: top;
}
i.anticon {
cursor: pointer;
font-size: 18px;
padding: 2px 15px;
vertical-align: inherit !important;
&:hover {
color: #147dc2;
}
}
.cannotclick {
pointer-events: none;
color: #aaa;
opacity: 0.6;
}
.buy-button {
float: right;
margin-right: 2%;
}
::ng-deep .ant-table-row .buy-button {
float: left;
}
::ng-deep .ant-table-th-right-sticky {
width: 200px;
}
.ant-table-th-right-sticky, .ant-table-td-right-sticky {
position: -webkit-sticky;
position: sticky;
z-index: 1;
right: 0;
}
.ant-table-th-left-sticky, .ant-table-td-left-sticky {
position: -webkit-sticky;
position: sticky;
z-index: 1;
left: 0;
}
.ellipsisClass{
display: inline-block;
max-width: 150px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
|