1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/+workloads-pods/pod-details-list.scss
Miska Kaipiainen 758034f61a
Clean up legacy references to Kontena (#216)
Signed-off-by: Miska Kaipiainen <miska.kaipiainen@gmail.com>
2020-04-11 14:38:53 +03:00

53 lines
671 B
SCSS

.PodDetailsList {
position: relative;
.Table {
margin: 0 (-$margin * 3);
&.virtual {
height: 500px;
}
}
.TableCell {
&:first-child {
margin-left: $margin;
}
&:last-child {
margin-right: $margin;
}
&.name {
flex-grow: 2;
}
&.namespace {
flex-grow: 1.2;
}
&.cpu {
align-self: center;
.LineProgress {
color: $lensBlue;
}
}
&.memory {
align-self: center;
.LineProgress {
color: $lensMagenta;
}
}
&.warning {
@include table-cell-warning;
}
&.status {
@include pod-status-colors;
}
}
}