mirror of
https://github.com/vinta/awesome-python.git
synced 2026-05-10 10:28:43 +08:00
feat(mobile): show last commit date in expand row on mobile
Add an expand-commit span inside the expand row that displays the last commit date. Hidden on desktop, visible only on mobile (max-width: 960px) via media query, mirroring the commit column that appears in the full table. Relative time formatting is applied via JS on page load. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -789,6 +789,16 @@ th[data-sort].sort-asc::after {
|
||||
color: var(--line-strong);
|
||||
}
|
||||
|
||||
.expand-commit {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (max-width: 960px) {
|
||||
.expand-commit {
|
||||
display: inline;
|
||||
}
|
||||
}
|
||||
|
||||
.tag {
|
||||
position: relative;
|
||||
border: 1px solid transparent;
|
||||
|
||||
Reference in New Issue
Block a user