implemented archiving tasks from kanban

This commit is contained in:
2025-10-06 21:49:41 +02:00
parent 36fdcd77ba
commit 8bc12cff2d
3 changed files with 60 additions and 25 deletions

View File

@@ -45,6 +45,15 @@ textarea{
background-color: #333;
}
.archive{
background: black;
}
.archive.hover{
background: orange;
color: black;
}
.em {
background: rgba(255, 215, 0, 0.09);
}

View File

@@ -53,16 +53,6 @@ nav {
border-bottom: 1px solid;
}
.error {
padding: 5px;
border-radius: 6px;
}
.warn {
padding: 5px;
border-radius: 6px;
}
fieldset[tabindex="0"]{
max-height: 55px;
overflow: hidden;
@@ -74,6 +64,29 @@ fieldset[tabindex="0"]:focus-within{
td, tr{
vertical-align: baseline;
}
.archive {
position: fixed;
top: 10px;
right: 10px;
width: 200px;
height: 30px;
z-index: 100;
border-radius: 5px;
text-align: center;
border: 1px solid;
}
.error {
padding: 5px;
border-radius: 6px;
}
.warn {
padding: 5px;
border-radius: 6px;
}
.customer,
.sender,
.invoice_meta{
@@ -369,15 +382,3 @@ a.wikilink{
.archive {
position: fixed;
top: 10px;
right: 10px;
width: 250px;
height: 40px;
z-index: 100;
border-radius: 5px;
background: black;
text-align: center;
border: 1px solid;
}