Recherche des tweets de réponse avec l'API Tweeter

This commit is contained in:
hugol
2024-11-17 13:55:25 +01:00
parent 3d386178bf
commit 8dc18553ec
1751 changed files with 379552 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
//
// Tables
// --------------------------------------------------
.table:not(.table-borderless) {
// Highlight border color between thead, tbody and tfoot.
> :not(:last-child) > :last-child > * {
border-bottom-width: 2px;
}
}
.table-vcenter {
th,
td {
vertical-align: middle;
}
}
// Table tools
.js-table-checkable tbody tr,
.js-table-sections-header > tr {
cursor: pointer;
}
.js-table-sections-header {
> tr > td:first-child > i {
transition: transform .15s ease-out;
}
+ tbody {
display: none;
}
&.show {
> tr > td:first-child > i {
transform: rotate(90deg);
}
+ tbody {
display: table-row-group;
}
}
}