16 lines
332 B
CSS
16 lines
332 B
CSS
|
|
/* logs page */
|
||
|
|
table.logTb {
|
||
|
|
table-layout: fixed;
|
||
|
|
}
|
||
|
|
|
||
|
|
table.logTb td {
|
||
|
|
width: 100px;
|
||
|
|
overflow: hidden;
|
||
|
|
white-space: nowrap;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
-o-text-overflow: ellipsis;
|
||
|
|
-icab-text-overflow: ellipsis;
|
||
|
|
-khtml-text-overflow: ellipsis;
|
||
|
|
-moz-text-overflow: ellipsis;
|
||
|
|
-webkit-text-overflow: ellipsis;
|
||
|
|
}
|