jiro-ui
Version:
A Mithril.js UI library based from construct-ui
26 lines (25 loc) • 835 B
CSS
.cui-table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
max-width: 100%;
background-color: #ffffff; }
.cui-table tbody {
width: 100%; }
.cui-table th, .cui-table td {
border-bottom: solid 1px #c5cdd1;
padding: 10px;
font-size: 14px;
text-align: left; }
.cui-table:not(.cui-table-bordered) tr:last-child td, .cui-table:not(.cui-table-bordered) tr:last-child th {
border-bottom: none; }
.cui-table.cui-table-bordered td, .cui-table.cui-table-bordered th {
border: solid 1px #c5cdd1; }
.cui-table.cui-table-striped tr:nth-of-type(odd) {
background: #f1f3f5; }
.cui-table.cui-table-interactive tr {
cursor: pointer; }
.cui-table.cui-table-interactive tr:hover {
background: #f1f3f5; }
.cui-table.cui-table-interactive tr:active {
background: #eceff1; }