blob: f47b736ce2e36423f25962cfde66c753e475c62a (
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
101
102
103
104
105
106
107
|
$message-info-icon-size: 16px;
.vnf-creation-page {
.list-editor-view-header {
border-bottom: none;
}
.vnfBrowse-list-item {
display: flex;
height: 36px;
@extend .body-1;
&.header {
@extend .body-1-semibold;
background-color: $tlv-light-gray;
color: $text-black;
}
&.selectedRow {
background-color: $blue;
color: $white;
.svg-icon-wrapper {
&.__positive {
fill: $white;
color: $white;
}
}
}
.svg-icon-wrapper {
&.__positive {
fill: $dark-gray;
color: $dark-gray;
}
}
}
.activity-action {
.svg-icon-wrapper {
float: left;
}
}
.message-further-info-icon {
background-color: $gray;
}
.table-cell {
border-right: 1px solid $light-gray;
border-bottom: 1px solid $light-gray;
&:last-child {
border-right: none;
}
flex-basis: 22%;
display: flex;
padding: 0 20px;
justify-content: center;
flex-direction: column;
&.vnftable-action {
flex-basis: 12%;
span {
margin: auto;
}
}
}
.vnf-table-header {
cursor: pointer;
display: flex;
align-items: center;
.header-sort-arrow {
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
margin-left: 9px;
&.up {
border-bottom: 5px solid $black;
}
&.down {
border-top: 5px solid $black;
}
}
}
.vnf-table-cell {
display: flex;
justify-content: space-between;
span {
overflow: hidden;
text-overflow: ellipsis;
}
}
.vnftable-name {
max-width: 22%;
}
.vnf-grid-section {
margin: 20px 20px 20px 50px;
}
.vnf-modal {
text-align: right;
margin-top: 22px;
}
.vnf-submit {
margin-right: 15px;
}
}
|