Dashboard v2.0.0 #5

Merged
alu merged 47 commits from v2.0.0 into main 2026-08-10 21:10:15 +00:00
2 changed files with 17 additions and 1 deletions
Showing only changes of commit 4582d9726d - Show all commits
+13
View File
@@ -130,6 +130,19 @@ hr {
align-items: center;
}
.row-reverse {
flex-direction: row-reverse;
row-gap: 10px;
align-items: center;
}
.column {
flex-direction: column;
row-gap: 10px;
align-items: center;
}
.column-reverse {
flex-direction: column-reverse;
row-gap: 10px;
+4 -1
View File
@@ -59,15 +59,18 @@ class ErrorDialog extends HTMLElement {
max-height: 20lh;
min-height: 20lh;
overflow-y: scroll;
padding-left: 12px;
padding-right: 12px;
}
#errors * {
margin: 0;
width: 100%;
}
</style>
<dialog class="w3-container w3-card w3-border-0">
<form method="dialog">
<p class="w3-large" id="prompt">Error</p>
<div id="errors" class="flex column-reverse"></div>
<div id="errors" class="flex column"></div>
<div class="w3-center" id="controls">
<button class="w3-button w3-margin" type="submit" value="ok">OK</button>
<button class="w3-button w3-margin" type="submit" value="copy">Copy</button>