63 lines
797 B
Plaintext
63 lines
797 B
Plaintext
@import "theme.less";
|
|
|
|
#problems-list, #acknowledged-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, min-content);
|
|
grid-gap: 4px 16px;
|
|
margin-bottom: 32px;
|
|
|
|
div {
|
|
white-space: nowrap;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.header {
|
|
font-weight: @bold;
|
|
}
|
|
|
|
.trigger {
|
|
color: @color1;
|
|
font-weight: @bold;
|
|
}
|
|
|
|
.acknowledge {
|
|
img {
|
|
height: 16px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#acknowledged-list.hidden{
|
|
display: none;
|
|
}
|
|
|
|
#areas {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
margin-top: 16px;
|
|
|
|
.area {
|
|
.section {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, min-content);
|
|
grid-gap: 8px 12px;
|
|
|
|
.name {
|
|
color: @text2;
|
|
grid-column: 1 / -1;
|
|
font-weight: bold !important;
|
|
line-height: 24px;
|
|
}
|
|
|
|
div {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|