- 表格设置列头高度
.datagrid-header-row {
height: 30px;
}
- 表格设置列头字体大小
.datagrid-header .datagrid-cell span {
font-size: 13px;
}
- 表格设置内容行字体大小
.datagrid-cell {
font-size: 14px;
}
- 表格设置内容行高度
.datagrid-row {
height: 38px;
}
- 多选带复选下拉框设置内容字体大小
.combobox-item, .combobox-group {
font-size: 15px;
}
- 表格文本过长样式设置,鼠标移上去才显示全部内容
.textEllipsis {
/*color: #000000;*/
overflow: hidden; /*不允许滚动条*/
white-space: nowrap; /*不允许文本换行*/
text-overflow: ellipsis; /*文本超长显示省略号*/
}
/* 鼠标移上,显示全文class */
.textEllipsis:hover {
height: auto;
word-break: break-all;
white-space: pre-wrap;
text-decoration: none;
}