Add/edit notifications

This commit is contained in:
Magnus Åhall 2024-06-28 15:28:52 +02:00
parent 1ede36b8aa
commit c7ad2aa1b6
19 changed files with 531 additions and 11 deletions

View file

@ -24,3 +24,20 @@
#areas .area .section.configuration img {
height: 16px;
}
#services {
display: grid;
grid-template-columns: repeat(3, min-content);
gap: 10px 24px;
background-color: #2979b8;
width: min-content;
padding: 16px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-top: 16px;
}
#services .header {
font-weight: bold;
}
#services div {
white-space: nowrap;
}

View file

@ -43,7 +43,8 @@ button:focus {
#datapoints,
#problems-list,
#acknowledged-list,
#values {
#values,
#services {
background-color: #fff !important;
border: 1px solid #ddd;
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.25);

View file

@ -4,3 +4,9 @@ body {
#areas .area {
box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.5);
}
#page-error {
border: unset;
color: #fff;
background-color: #a00;
text-align: center;
}

View file

@ -24,3 +24,20 @@
#areas .area .section.configuration img {
height: 16px;
}
#services {
display: grid;
grid-template-columns: repeat(3, min-content);
gap: 10px 24px;
background-color: #333;
width: min-content;
padding: 16px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-top: 16px;
}
#services .header {
font-weight: bold;
}
#services div {
white-space: nowrap;
}

View file

@ -43,7 +43,8 @@ button:focus {
#datapoints,
#problems-list,
#acknowledged-list,
#values {
#values,
#services {
background-color: #fff !important;
border: 1px solid #ddd;
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.25);

View file

@ -4,3 +4,9 @@ body {
#areas .area {
box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.5);
}
#page-error {
border: unset;
color: #fff;
background-color: #a00;
text-align: center;
}

View file

@ -36,3 +36,23 @@
}
}
}
#services {
display: grid;
grid-template-columns: repeat(3, min-content);
gap: 10px 24px;
background-color: @bg3;
width: min-content;
padding: 16px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-top: 16px;
.header {
font-weight: bold;
}
div {
white-space: nowrap;
}
}

View file

@ -58,7 +58,7 @@ button {
}
}
#datapoints, #problems-list, #acknowledged-list, #values {
#datapoints, #problems-list, #acknowledged-list, #values, #services {
background-color: #fff !important;
border: 1px solid #ddd;
box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.25);

View file

@ -9,3 +9,10 @@ body {
box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);
}
}
#page-error {
border: unset;
color: #fff;
background-color: #a00;
text-align: center;
}