Prevent the logs view table from normally growing too large

This commit is contained in:
Joseph Schorr 2014-08-12 14:30:59 -04:00
parent ab68126d8a
commit 8db889e2d4
3 changed files with 26 additions and 6 deletions

View file

@ -565,6 +565,14 @@ i.toggle-icon:hover {
line-height: 25px;
}
.logs-view-element .log .log-description code {
max-width: 300px;
display: inline-block;
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
}
.logs-view-element .log-performer {
white-space: nowrap;
}
@ -3168,6 +3176,10 @@ p.editable:hover i {
display: inline-block;
}
.table-container {
max-width: 100%;
}
.billing-invoices-element .invoice-title {
padding: 6px;
cursor: pointer;