Skip to content

Commit

Permalink
[desk-tool] Fix document pane title overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuslundgard authored and rexxars committed Oct 6, 2020
1 parent cef9659 commit 8427d28
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
padding: 1em;
line-height: 17px;
cursor: default;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;

@nest .isCollapsed & {
transform: rotate(90deg);
Expand All @@ -28,6 +31,10 @@
@nest .isCollapsed & {
display: none;
}

@nest &:empty {
display: none;
}
}

.paneActions {
Expand Down

0 comments on commit 8427d28

Please sign in to comment.