Fix #46: Job Table overflow ellipsis

This commit is contained in:
Gary Sharp
2014-04-13 23:33:15 +10:00
parent f35f9d3661
commit 740e806ef0
5 changed files with 24 additions and 2 deletions
@@ -3980,6 +3980,13 @@ table.jobTable > tfoot > tr > th,
table.jobTable > tfoot > tr > td { table.jobTable > tfoot > tr > td {
background-color: #f4f4f4; background-color: #f4f4f4;
} }
table.jobTable td {
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
table.jobTable.hideStatusClosed tr[data-status=Closed] { table.jobTable.hideStatusClosed tr[data-status=Closed] {
display: none; display: none;
} }
File diff suppressed because one or more lines are too long
+7
View File
@@ -803,6 +803,13 @@ table.jobTable > tfoot > tr > th,
table.jobTable > tfoot > tr > td { table.jobTable > tfoot > tr > td {
background-color: #f4f4f4; background-color: #f4f4f4;
} }
table.jobTable td {
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
table.jobTable.hideStatusClosed tr[data-status=Closed] { table.jobTable.hideStatusClosed tr[data-status=Closed] {
display: none; display: none;
} }
+8
View File
@@ -742,6 +742,14 @@ table.jobTable {
.tableData; .tableData;
table-layout: fixed; table-layout: fixed;
td {
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
&.hideStatusClosed { &.hideStatusClosed {
tr[data-status=Closed] { tr[data-status=Closed] {
display: none; display: none;
File diff suppressed because one or more lines are too long