mirror of
https://github.com/vinta/awesome-python.git
synced 2026-05-09 22:17:33 +08:00
fix(css): use display:none for expand-row first/last cells on mobile
Replaces the width/padding/overflow hack with a clean display:none. The previous approach collapsed the cells to zero size but kept them in the layout flow; display:none removes them entirely. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1134,9 +1134,7 @@ th[data-sort].sort-asc::after {
|
|||||||
|
|
||||||
.expand-row td:first-child,
|
.expand-row td:first-child,
|
||||||
.expand-row td:last-child {
|
.expand-row td:last-child {
|
||||||
width: 0;
|
display: none;
|
||||||
padding: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.col-name {
|
.col-name {
|
||||||
|
|||||||
Reference in New Issue
Block a user