Merge branch 'ticket_background'

This commit is contained in:
2026-06-06 18:36:31 +02:00
4 changed files with 87 additions and 37 deletions
+24 -4
View File
@@ -13,21 +13,40 @@
}
.ticketbox {
.listbox {
max-width: auto;
margin:0 0;
margin-top: 96px;
background-color: #90ff82;
background-color: $rundbgbackgroundcolor;
padding-bottom: 96px;
color: white;
padding-left: 32px;
padding-right: 32px;
padding-top: 96px;
border-radius: 20px;
border-color: #000000;
border-style: double;
box-shadow: 20px 20px 10px;
box-shadow: rgb(43, 43, 43);
box-shadow: 10px 10px 10px rgba(43, 43, 43, 0.8);
font-size: 26px;
list-style-type: none;
&.To-Do {
background-color: #b1003b;
}
&.InProgress {
background-color: #fff385;
}
&.Completed {
background-color: #90ff82;
}
&.Archived {
background-color: #af69ee;
}
}
.postits {
@@ -38,4 +57,5 @@
}
.warning {
color: #570000;
}
}
}