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 {
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] {
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 {
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] {
display: none;
}
+8
View File
@@ -742,6 +742,14 @@ table.jobTable {
.tableData;
table-layout: fixed;
td {
white-space: nowrap;
overflow: hidden;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
&.hideStatusClosed {
tr[data-status=Closed] {
display: none;
File diff suppressed because one or more lines are too long