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

Fix table row heights (#5652)

This commit is contained in:
Alex Andreev 2022-06-16 17:01:27 +03:00 committed by GitHub
parent 9c420d6f1e
commit 96ed99a06b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@
transition: none; transition: none;
opacity: 0; opacity: 0;
margin-left: var(--padding); margin-left: var(--padding);
width: calc(var(--unit) * 2);
&:hover { &:hover {
/* Drop styles defined for <Icon/> */ /* Drop styles defined for <Icon/> */

View File

@ -15,7 +15,6 @@
&:not(.isExpanded) { &:not(.isExpanded) {
white-space: unset; white-space: unset;
overflow: unset;
text-overflow: unset; text-overflow: unset;
} }
} }

View File

@ -8,6 +8,7 @@
word-break: break-all; word-break: break-all;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
line-height: 1;
&.menu { &.menu {
@include table-cell-action; @include table-cell-action;