1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-01 07:54:38 +04:00
Files
tabler/scss/ui/_tables.scss
T
2020-02-18 19:40:29 +01:00

55 lines
599 B
SCSS

.table {
color: inherit;
thead {
th {
background: $min-black;
border-width: $table-border-width;
@include subheader;
padding-top: .5rem;
padding-bottom: .5rem;
@media print {
background: transparent;
}
}
}
th {
color: $text-muted;
}
}
.table-nowrap {
th,
td {
white-space: nowrap;
}
}
.table-md {
th,
td {
padding: .5rem;
}
}
.table-vcenter {
td,
th {
vertical-align: middle;
}
}
.table-center {
td,
th {
text-align: center;
}
}
.td-truncate {
max-width: 1px;
width: 100%;
}