You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/components/_table.scss

55 lines
901 B

3 years ago
/**
*
*
*
*/
3 years ago
$table__padding-breakpoints: (
$breakpoint__md: 0.5em 1.25em
) !default;
3 years ago
.table {
width: 100%;
3 years ago
border: $border;
3 years ago
background: var(--white);
&--striped {
tr {
&:nth-child(even) {
3 years ago
background-color: lighten($color__primary, 75%);
}
}
3 years ago
}
3 years ago
&--scroll {
overflow-x: auto;
}
3 years ago
&__td {
3 years ago
color: var(--text);
}
3 years ago
&__td,
&__th {
3 years ago
text-align: left;
3 years ago
border-bottom: $border;
3 years ago
padding: 0.25em 0.75em;
@include media-breakpoints('padding', $table__padding-breakpoints);
3 years ago
}
3 years ago
&__th {
3 years ago
color: white;
3 years ago
background-color: var(--background);
3 years ago
}
3 years ago
&--hover {
.table__tr:hover {
background-color: lighten($color__primary, 10%);
3 years ago
3 years ago
.table__td {
color: white;
}
}
}
3 years ago
}