这是我正在使用的antd样式的CSS
style.css
.ant-table-tbody > tr > td, .ant-table-thead > tr > th
{
padding:4px;
}
tr:nth-child(odd){
background: #f1e6ff;
}
tr:nth-child(even){
background: white;
}
thead[class*="ant-table-thead"] th{
background-color:#000 !important;
color: white;
font-weight: bold;
border-color: #000;
text-align: center;
}
.table_btn
{
margin:0 !important;
}
.ant-btn
{
margin:0;
}
.ant-table-tbody > tr:hover > td {
color: #fff;
}
index.less
@import "callout";
@import 'e-commerce';
@import "pricing-tables";
@import "login";
@import "dashboard";
@import "error";
@import "editor";
@import "testimonials";
tr:nth-child(odd){
background:inherit !important;
}
.ant-modal-content {
.ant-modal-close{
color: #fff !important;
}
.ant-modal-header {
background-color: #000000;
.ant-modal-title {
color: #fff !important;
}
}
}
.table-wrapper {
.ant-btn {
padding: 0 10px;
height: 30px;
font-size: 13px;
> .anticon {
+ span {
margin-left: 5px;
}
}
&.ant-btn-success {
color: #3d8918;
border-color: #d9d9d9;
&:hover {
background-color:#3d8918;
color: #fff;
}
}
&.ant-btn-danger {
color: #c70d17;
background-color:#fff;
&:hover{
background-color:#c70d17;
color: #fff;
}
}
}
.actions {
text-align: right;
.ant-input {
border-radius: 2px;
padding:0 10px;
font-size: 13px;
height: 30px;
}
}
.table-layout {
.ant-table-small{
> .ant-table-content{
> .ant-table-body {
margin: 0 !important;
> table {
> .ant-table-tbody{
> tr{
> td{
padding: 2px 8px !important;
font-size: 13px !important;
text-align:center;
min-width: 80px;
.ant-btn {
width:100px;
}
}
}
}
}
}
}
index.js
<Table
className="table-layout"
columns={this.state.columns}
dataSource={filteredData}
rowClassName='data-row'
bordered={true}
size={"small"}
onRowDoubleClick={ (record, index, event) => this.handleEditModal(record) }
onRowClick={(record, index, event) => this.handleRowClick(record)}
loading={this.state.loading}
pagination={{ pageSize: 14 }}
/>
这就是 Table 在索引页面中的使用方式。style.css和index.less是CSS的页面。
谁能帮我写一个CSS在这个页面上使一行绿色?我想根据情况做一排绿色。我需要的CSS我需要调用的CSS在网页上的代码
4条答案
按热度按时间ff29svar1#
到目前为止,我找到了两种方法来做到这一点:
一种方法是使用Table的
rowClassName
prop:第二种方法是使用纯CSS
注意rowClassName只对行有效,所以对于表头的CSS,我们只能使用上面的普通CSS。
dgsult0t2#
看看这些Jsfiddle链接是否对你有帮助。它们展示了两种改变背景颜色的方法。
https://jsfiddle.net/2b2376a4/
https://jsfiddle.net/2b2376a4/
对于第一链路
对于第二链路
slmsl1lt3#
如果你想使用样式化的组件,你可以像这样 Package 它
cotxawn74#
我不是一个使用类名的爱好者,我看到没有人提到使用
onRow
prop有另一种更简单的方法: