fix(ui): add elipsis for text overflow (#6088)

This commit is contained in:
Chirag Madlani 2022-07-14 19:43:17 +05:30 committed by GitHub
parent 4f61169df6
commit d13b8ce9a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,6 +40,7 @@
margin-left: 8px !important;
display: flex !important;
align-items: center;
overflow: hidden;
}
.rc-tree-node-content-wrapper:hover {
@ -49,3 +50,8 @@
.rc-tree-node-content-wrapper:not(.rc-tree-node-selected):hover .rc-tree-title {
text-decoration: underline !important;
}
.rc-tree-title {
overflow: auto;
text-overflow: ellipsis;
}