Front-Complete/src/styles/tables.css

70 lines
1.2 KiB
CSS

/**
Basic Table Styles
*/
.table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
table.simple {
width: 100%;
border: none;
border-spacing: 0;
text-align: left;
}
table.simple thead tr th {
/* padding: 16px 16px; */
font-weight: 500;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
white-space: nowrap;
}
table.simple thead tr th:first-child {
padding-left: 15px;
}
table.simple thead tr th:last-child {
padding-right: 0px;
}
table.simple tbody tr td {
padding: 12px 12px;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
table.simple tbody tr td:first-child {
padding-left: 0px;
}
table.simple tbody tr td:last-child {
padding-right: 0px;
}
table.simple tbody tr:last-child td {
border-bottom: none;
}
table.simple.clickable tbody tr {
cursor: pointer;
}
table.simple.clickable tbody tr:hover {
background: rgba(0, 0, 0, 0.03);
}
table.simple.borderless {
border: none;
}
table.simple.borderless tbody tr td{
border: none;
}
table.simple.borderless thead tr th{
border: none;
}