2024-05-01 20:01:43 +02:00
|
|
|
@import "theme.less";
|
|
|
|
|
|
|
|
#problems-list, #acknowledged-list {
|
|
|
|
display: grid;
|
2024-05-01 21:02:45 +02:00
|
|
|
grid-template-columns: repeat(6, min-content);
|
2024-05-01 20:01:43 +02:00
|
|
|
grid-gap: 4px 16px;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
|
|
|
|
div {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
font-weight: @bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.trigger {
|
|
|
|
color: @color1;
|
|
|
|
font-weight: @bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.acknowledge {
|
|
|
|
img {
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#acknowledged-list.hidden{
|
|
|
|
display: none;
|
|
|
|
}
|