get rid of effect where ellipsis overflow doesn't work

This commit is contained in:
Zlatin Balevsky
2020-03-22 23:03:29 +00:00
parent 0d4b0df19d
commit 2042bfccb7
2 changed files with 6 additions and 3 deletions

View File

@@ -475,7 +475,7 @@ table td, th {
padding-top: 3px;
background: white;
white-space: nowrap;
overflow-x: hidden;
overflow: hidden;
font-size: 1em;
font-weight: normal;
}

View File

@@ -32,6 +32,9 @@ div#activeSearches table td:nth-child(2) {
text-align: right;
}
div#topTableSender table thead th:nth-child(1) {
width: 35%;
}
div#topTableSender table thead th:nth-child(2) {
width: 100px;
}
@@ -42,7 +45,7 @@ div#topTableSender table thead th:nth-child(4) {
width: 100px;
}
div#topTableSender table thead th:nth-child(5) {
width: 340px;
width: 35%;
}
div#topTableSender table tbody td:nth-child(1) {
text-overflow: ellipsis;
@@ -551,4 +554,4 @@ textarea.copypaste {
position: absolute;
z-index: -9999;
pointer-events: none;
}
}