implement files list

This commit is contained in:
yggverse 2025-08-09 18:37:50 +03:00
parent c84e0ffbdb
commit fa748fbd18
7 changed files with 133 additions and 76 deletions

View file

@ -20,9 +20,9 @@
--background: #282b3c;
--default: #ccc;
--item: #34384f;
--separator: #4f536a;
}
body {
background: var(--background);
color: var(--default);
@ -47,6 +47,24 @@ h1, h2 {
font-size: 14px;
}
table {
border-collapse: collapse;
width: 100%;
}
table td,
table th {
padding: 4px 8px;
}
table > thead > tr > th {
text-align: left;
}
table > tbody > tr:hover > td {
background: var(--background)
}
body > * {
position: relative;
overflow: hidden;
@ -108,7 +126,7 @@ main > div > p {
/* item row meta, controls */
main > div > div {
border-top: 1px #4f536a solid;
border-top: 1px solid var(--separator);
margin-top: 16px;
overflow: hidden;
padding-top: 16px;