1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fixing tolerations table styles

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-01-21 14:28:14 +03:00
parent 140abbe459
commit 96beb0f2d9
3 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,10 @@
.PodDetailsTolerations { .PodDetailsTolerations {
grid-template-columns: auto; grid-template-columns: auto;
.PodTolerations {
margin-top: var(--margin);
}
// Expanding value cell to cover 2 columns (whole Drawer width) // Expanding value cell to cover 2 columns (whole Drawer width)
> .name { > .name {

View File

@ -1,10 +1,14 @@
.PodTolerations { .PodTolerations {
.TableHead {
background-color: var(--drawerSubtitleBackground);
}
.TableCell { .TableCell {
white-space: normal; white-space: normal;
word-break: normal; word-break: normal;
&.key { &.key {
flex-grow: 4; flex-grow: 3;
} }
} }
} }

View File

@ -69,7 +69,6 @@
padding: var(--spacing); padding: var(--spacing);
.Table .TableHead { .Table .TableHead {
background-color: $contentColor;
border-bottom: 1px solid $borderFaintColor; border-bottom: 1px solid $borderFaintColor;
} }
} }