mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
bef43020cd
[web] BS5 projects tags GitOrigin-RevId: 4cdea8ad374c8b0ecba9281e3bde64517e6b0153
56 lines
834 B
SCSS
56 lines
834 B
SCSS
.table-container {
|
|
flex: 1;
|
|
margin-bottom: var(--spacing-06);
|
|
background-color: var(--white);
|
|
|
|
.table {
|
|
margin-bottom: initial;
|
|
}
|
|
}
|
|
|
|
.table {
|
|
tr {
|
|
&:last-child {
|
|
td {
|
|
border-bottom-width: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
th,
|
|
td {
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.table-container-bordered {
|
|
padding: var(--spacing-04);
|
|
border-color: $table-border-color;
|
|
border-radius: var(--border-radius-base);
|
|
border-width: var(--bs-border-width);
|
|
border-style: solid;
|
|
}
|
|
|
|
.table-hover {
|
|
th {
|
|
&:hover {
|
|
background-color: $table-hover-bg;
|
|
}
|
|
}
|
|
}
|
|
|
|
.table-striped {
|
|
tr,
|
|
td {
|
|
border-top-width: 0;
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
> tbody > tr:nth-of-type(#{$table-striped-order}) {
|
|
&:hover > * {
|
|
--#{$prefix}table-hover-bg: var(--bg-light-tertiary);
|
|
}
|
|
}
|
|
}
|