@deepbag/react-grid-x
Version:
ReactGridX is a customizable and flexible React table component that supports pagination, dynamic rendering of table data, and customizable column rendering. It provides an easy-to-use interface for displaying tabular data with configurable columns, pagin
44 lines (36 loc) • 1.31 kB
CSS
/* Styles the container of the table in dark theme */
.rgx-theme .rgx-table-container-dark {
border: 1px solid #474747 ;
}
/* Styles the table header cell and checkbox header in dark theme */
.rgx-theme .rgx-table-head-th-dark,
.rgx-theme .rgx-table-head-th-checkbox-dark {
color: #fff ;
}
/* Styles the table body cells and checkbox cells in dark theme */
.rgx-theme .rgx-table-body-td-dark,
.rgx-theme .rgx-table-body-td-checkbox-dark {
border-top: 1px solid #474747 ;
border-bottom: 1px solid #474747 ;
color: #fff ;
}
/* Styles even rows in the table body in dark theme */
.rgx-theme .rgx-table-body-tr-dark:nth-child(even) {
background-color: #1c1c1c ;
}
/* Styles odd rows in the table body in dark theme */
.rgx-theme .rgx-table-body-tr-dark:nth-child(odd) {
background-color: #2f2f2f ;
}
/* Styles the hover effect for table rows in dark theme */
.rgx-theme .rgx-table-body-tr-dark:hover {
background-color: #1c1c1c ;
}
/* Styles the table header in dark theme */
.rgx-theme .rgx-table-head-dark {
background-color: #1c1c1c ;
}
/* Styles the hover effect for table popup items in dark theme */
.rgx-theme .rgx-table-popup-items-dark:hover {
background-color: #0e1215 ;
}