lots of work on the stats page layout and features

This commit is contained in:
2025-04-08 15:52:23 -04:00
parent b206033c7d
commit b25ebfe9bb
5 changed files with 493 additions and 304 deletions

View File

@@ -259,15 +259,15 @@ form.inline-form {
}
.stats-page .success-card {
border-left: 6px solid limegreen;
border-left: 6px solid limegreen !important;
}
.stats-page .error-card {
border-left: 6px solid crimson;
border-left: 6px solid crimson !important;
}
.stats-page .fallback-card {
border-left: 6px solid orange;
border-left: 6px solid orange !important;
}
.stats-page .styled-table.small-table td,
@@ -451,3 +451,61 @@ form.inline-form {
font-style: italic;
opacity: 0.8;
}
.controls-container {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
#stats-search {
flex: 1 1 300px;
max-width: 300px;
margin-left: auto;
padding: 6px 10px;
border-radius: 4px;
border: 1px solid var(--accent);
background-color: var(--cell-bg);
color: var(--fg);
}
.controls-card {
display: flex;
flex-wrap: wrap;
gap: 1rem 2rem;
padding: 1rem;
margin-bottom: 2rem;
background-color: var(--card-bg);
border: 1px solid #666;
border-radius: 8px;
align-items: center;
}
.control-group {
display: flex;
align-items: center;
gap: 0.5rem;
flex: 1 1 auto;
min-width: 200px;
}
.auto-refresh-block select {
min-width: 80px;
}
.search-block {
flex-grow: 2;
justify-content: flex-end;
}
.search-block input {
width: 100%;
max-width: 300px;
padding: 6px 10px;
border-radius: 4px;
border: 1px solid var(--accent);
background-color: var(--cell-bg);
color: var(--fg);
}