smon/static/less/problems.less

53 lines
723 B
Plaintext
Raw Permalink Normal View History

2024-06-25 08:59:07 +02:00
@import "theme-@{THEME}.less";
2024-05-01 20:01:43 +02:00
#problems-list, #acknowledged-list {
grid-template-columns: repeat(7, min-content);
2024-05-01 20:01:43 +02:00
.trigger {
color: @color1;
}
img.acknowledge {
height: 16px;
2024-05-01 20:01:43 +02:00
}
2024-07-04 08:54:03 +02:00
.info {
margin-right: 8px;
}
.icons {
display: grid;
grid-template-columns: min-content min-content;
align-items: center;
}
2024-05-01 20:01:43 +02:00
}
#acknowledged-list.hidden{
display: none;
}
2024-05-28 12:56:35 +02:00
#area-grouped {
2024-05-28 12:56:35 +02:00
display: flex;
flex-wrap: wrap;
2024-06-25 10:50:31 +02:00
gap: 24px;
2024-05-28 12:56:35 +02:00
margin-top: 16px;
align-items: flex-start;
2024-05-28 12:56:35 +02:00
.area {
grid-template-columns: repeat(5, min-content);
2024-05-28 12:56:35 +02:00
.section {
padding: 4px 10px;
border-radius: 5px;
background: @bg3;
color: #fff;
width: min-content;
margin-bottom: 8px;
2024-05-28 12:56:35 +02:00
}
}
}
.hidden {
display: none;
}