Re IDC #3067: Show eye-icon when segment label name is long (#3073)

* fix: #2964 Reword message for segmentation error loading due to orientation tolerance

* fix: Show eye-icon when segment name is long

* update python version
This commit is contained in:
Gitanjali 2022-12-21 10:40:04 +05:45 committed by GitHub
parent b9d484fb2e
commit 1d29554a91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -62,8 +62,8 @@
}
.dcmseg-segment-item .segment-label span {
overflow-wrap: normal;
white-space: nowrap;
overflow-wrap: break-word;
white-space: normal;
overflow: hidden;
max-width: calc(100% - 40px); /* calc(100% - 50px); 20px = eye icon */
text-overflow: ellipsis;
@ -71,6 +71,7 @@
.dcmseg-segment-item .segment-label .eye-icon {
cursor: pointer;
min-width: 20px;
color: var(--active-color);
}

View File

@ -1 +1 @@
3.7
3.8