refator_comm1
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user