|
12345678910111213141516171819 |
- .ant-table-bordered .ant-table-thead > tr > th,
- .ant-table-bordered .ant-table-tbody > tr > td {
- border-color: white !important;
- }
-
- /* 表格头部区域添加里边框 */
- .tableColor .ant-table-tbody > tr > td{
- border-right: 3px solid #2b3e71 !important;
- border-bottom: 1px solid #334474 !important;
- transition: background 0.3s;
- }
-
- /* 表格内容区域添加里边框 */
- .tableColor .ant-table-thead > tr > th{
- color: #bfceff !important;
- background-color: transparent !important;
- border-right: 3px solid #2b3e71 !important;
- border-bottom: 1px solid #334474 !important;
- }
|