2024-06-25 08:59:07 +02:00
|
|
|
#problems-list,
|
|
|
|
#acknowledged-list {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(6, min-content);
|
|
|
|
grid-gap: 4px 16px;
|
2024-06-25 10:50:31 +02:00
|
|
|
margin-top: 32px;
|
2024-06-25 08:59:07 +02:00
|
|
|
margin-bottom: 32px;
|
2024-06-25 10:50:31 +02:00
|
|
|
background-color: #333;
|
2024-06-25 18:19:15 +02:00
|
|
|
padding: 16px 24px;
|
2024-06-25 10:50:31 +02:00
|
|
|
width: min-content;
|
|
|
|
border-top-left-radius: 8px;
|
|
|
|
border-top-right-radius: 8px;
|
2024-06-25 08:59:07 +02:00
|
|
|
}
|
|
|
|
#problems-list div,
|
|
|
|
#acknowledged-list div {
|
|
|
|
white-space: nowrap;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
#problems-list .header,
|
|
|
|
#acknowledged-list .header {
|
|
|
|
font-weight: 800;
|
2024-06-25 18:19:15 +02:00
|
|
|
color: #777;
|
2024-06-25 08:59:07 +02:00
|
|
|
}
|
|
|
|
#problems-list .trigger,
|
|
|
|
#acknowledged-list .trigger {
|
|
|
|
color: #fb4934;
|
|
|
|
font-weight: 800;
|
|
|
|
}
|
|
|
|
#problems-list .acknowledge img,
|
|
|
|
#acknowledged-list .acknowledge img {
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
#acknowledged-list.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#areas {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2024-06-25 10:50:31 +02:00
|
|
|
gap: 24px;
|
2024-06-25 08:59:07 +02:00
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
#areas .area .section {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(2, min-content);
|
|
|
|
grid-gap: 8px 12px;
|
|
|
|
}
|
|
|
|
#areas .area .section .name {
|
|
|
|
color: #f7edd7;
|
|
|
|
grid-column: 1 / -1;
|
|
|
|
font-weight: bold !important;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
#areas .area .section div {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|