refator_comm1

This commit is contained in:
Mateusz Gruszczyński
2025-10-18 20:58:51 +02:00
parent 050d7d34df
commit 2682a0ff4f
11 changed files with 896 additions and 1035 deletions

View File

@@ -97,4 +97,49 @@ footer.site-footer a:hover {
.position-fixed.bottom-0.end-0.p-3 {
right: max(env(safe-area-inset-right), 1rem);
bottom: max(env(safe-area-inset-bottom), 1rem);
}
/* Row chevron (expandable rows) */
.table .chev {
width: 1.25rem;
text-align: center;
user-select: none;
}
.table tr.expandable {
cursor: pointer;
}
.table tr.expandable .chev::before {
content: "▸";
display: inline-block;
transition: transform .15s ease;
}
.table tr.expanded .chev::before {
transform: rotate(90deg);
content: "▾";
}
/* Small utility widths */
.w-1 {
width: 1.25rem;
}
/* Subtle skeleton */
.skel {
position: relative;
background: linear-gradient(90deg, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .10) 37%, rgba(255, 255, 255, .05) 63%);
background-size: 400% 100%;
animation: skel 1.4s ease-in-out infinite;
}
@keyframes skel {
0% {
background-position: 100% 0;
}
100% {
background-position: 0 0;
}
}