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

Force scrollable behaviour for all label columns

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2021-11-09 13:24:38 -05:00
parent e5bf5920fc
commit 54dfa21bf7
3 changed files with 26 additions and 1 deletions

View File

@ -38,4 +38,4 @@
@include namespaceStatus;
}
}
}
}

View File

@ -36,6 +36,18 @@
text-overflow: ellipsis;
}
:global(.ItemListLayout) {
.badge {
max-width: unset;
}
.badge:not(.isExpanded) {
white-space: unset;
overflow: unset;
text-overflow: unset;
}
}
.badge:not(.flat) {
background: var(--colorVague);
border-radius: 3px;

View File

@ -54,6 +54,19 @@
&.menu {
@include table-cell-action;
}
&.labels {
overflow-x: scroll;
text-overflow: unset;
&::-webkit-scrollbar {
display: none;
}
:not(:last-of-type) {
margin-right: 0.5em;
}
}
}
}