Downtime window now enumerates the actions/resources that will be refreshed upon completion. Resources can now specify their progression direction (#591)

This commit is contained in:
WBHarry 2025-08-05 13:43:14 +02:00 committed by GitHub
parent 645b8fef58
commit 599e9c7aa0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 140 additions and 2 deletions

View file

@ -63,6 +63,36 @@
}
}
.refreshables-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4px;
font-size: 12px;
&.wide {
grid-template-columns: 1fr 1fr 1fr 1fr;
}
.refreshable-container {
border: 1px solid light-dark(@dark-blue, @golden);
border-radius: 6px;
color: light-dark(@dark, @beige);
background-image: url('../assets/parchments/dh-parchment-dark.png');
padding: 0 2px;
text-align: center;
display: flex;
flex-direction: column;
gap: 2px;
.refreshable-title {
font-weight: bold;
}
.refreshable-name {
}
}
}
footer {
margin-top: 8px;
display: flex;