antui-admin
Version:
admin ui for antd
63 lines (59 loc) • 1.46 kB
text/less
@import "../../../style/themes/default";
@datatable-prefix-cls: ~"@{antui-prefix}-datatable";
// DataTable styles
// -----------------------------
.@{datatable-prefix-cls} {
&.table-row-alternate-color{
table {
background: #FFF;
tr:nth-child(odd) {background: #FFF}
tr:nth-child(even) {background: #f6f6f6}
tr:hover{
background: rgba(45, 183, 245, 0.2);
}
}
}
.ant-table-small .ant-table-tbody > tr > td {
padding: 3px 8px;
height: 35px;
}
.ant-table-footer{
padding: 8px;
}
.table-row-button{
button{
border: none;
background-color: transparent;
font-size: 20px;
height: 20px;
color: @primary-color;
padding:0px 5px ;
outline:none;
vertical-align: middle;
> i {
vertical-align: top;
}
&:hover,
&:focus {
background-color: transparent;
color: tint(@primary-color, 40%);
}
&:active,
&.active {
background-color: transparent;
}
&.disabled,
&[disabled],
fieldset[disabled] & {
&,
&:hover,
&:focus,
&:active,
&.active {
background-color: transparent;
color: #ccc;
}
}
}
}
}