53 lines
723 B
Plaintext
53 lines
723 B
Plaintext
@import "theme-@{THEME}.less";
|
|
|
|
#problems-list, #acknowledged-list {
|
|
grid-template-columns: repeat(7, min-content);
|
|
|
|
.trigger {
|
|
color: @color1;
|
|
}
|
|
|
|
img.acknowledge {
|
|
height: 16px;
|
|
}
|
|
|
|
.info {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.icons {
|
|
display: grid;
|
|
grid-template-columns: min-content min-content;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
#acknowledged-list.hidden{
|
|
display: none;
|
|
}
|
|
|
|
#area-grouped {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 24px;
|
|
margin-top: 16px;
|
|
align-items: flex-start;
|
|
|
|
.area {
|
|
grid-template-columns: repeat(5, min-content);
|
|
|
|
.section {
|
|
padding: 4px 10px;
|
|
border-radius: 5px;
|
|
background: @bg3;
|
|
color: #fff;
|
|
width: min-content;
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|