Commit d7af8fce authored by nanahira's avatar nanahira

filters

parent 30f1c126
...@@ -9,3 +9,33 @@ ...@@ -9,3 +9,33 @@
.progress { .progress {
height: 0.75rem; height: 0.75rem;
} }
.report-scroll {
max-height: 70vh;
overflow-y: auto;
padding-right: 0.5rem;
}
details > summary {
cursor: pointer;
list-style: none;
}
details > summary::-webkit-details-marker {
display: none;
}
.summary-row {
user-select: none;
}
details > summary::after {
content: "▾";
color: #6c757d;
margin-left: 0.5rem;
transition: transform 0.15s ease;
}
details[open] > summary::after {
transform: rotate(180deg);
}
This diff is collapsed.
This diff is collapsed.
...@@ -11,3 +11,19 @@ body { ...@@ -11,3 +11,19 @@ body {
main { main {
min-height: 100vh; min-height: 100vh;
} }
@media print {
body {
background: #ffffff;
}
.no-print {
display: none !important;
}
.report-scroll {
max-height: none !important;
overflow: visible !important;
padding-right: 0 !important;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment