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

49 lines
829 B

3 years ago
/**
*
*
*
*/
3 years ago
.table {
width: 100%;
3 years ago
border: 1px solid lighten($color__primary, 55%);
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 {
color: var(--text);
}
3 years ago
td,
th {
text-align: left;
3 years ago
border-bottom: 1px solid lighten($color__primary, 55%);
3 years ago
padding: 0.5em 1.25em;
//@include crispy__media-breakpoints('padding', $crispy__table__padding-breakpoints);
}
3 years ago
th {
color: white;
3 years ago
background-color: $color__primary;
3 years ago
}
3 years ago
tr:hover {
3 years ago
background-color: lighten($color__primary, 10%);
3 years ago
3 years ago
td {
color: white;
}
}
3 years ago
}