1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .ant-table {
- line-height: 1;
- .ant-table-cell {
- box-sizing: border-box;
- height: 34px;
- padding: 0;
- }
- .ant-table-container {
- .ant-table-thead {
- tr:first-child {
- .ant-table-cell {
- border: none;
- &:before {
- display: none;
- }
- &:first-child {
- border-radius: @border-radius-base 0 0 @border-radius-base;
- }
- &:last-child {
- border-radius: 0 @border-radius-base @border-radius-base 0;
- }
- }
- }
- }
- .ant-table-tbody {
- .ant-table-row {
- .ant-table-cell {
- border: none;
- font-weight: bold;
- color: @font-color;
- padding: 6px 15px;
- &:first-child {
- border-radius: @border-radius-base 0 0 @border-radius-base;
- }
- &:last-child {
- border-radius: 0 @border-radius-base @border-radius-base 0;
- }
- }
- &.table-striped {
- .ant-table-cell {
- background-color: @bg-color;
- }
- }
- }
- }
- }
- }
|