/** * TableCell.css - 表格单元格样式 */ .table-cell { border: 1px solid #d9d9d9; padding: 8px 12px; vertical-align: middle; text-align: center; position: relative; transition: none; } .table-cell:hover { background-color: rgba(24, 144, 255, 0.05); } .table-cell.selected { background-color: rgba(24, 144, 255, 0.1); box-shadow: inset 0 0 0 1px #1890ff; } /* 单元格内的富文本编辑器 */ .table-cell .rich-text-editor { min-height: 20px; }