1、日志界面过滤过长字符串 2、界面鼠标悬停事件(洪庆)

This commit is contained in:
zhangwenqing
2018-08-03 19:51:56 +08:00
parent 44f9f514a6
commit 8e3b6a3290
3 changed files with 67 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
/* 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;
}