Misc theme fixes

This commit is contained in:
Magnus Åhall 2024-06-25 10:50:31 +02:00
parent ec7919c9e5
commit e73d28a8f6
24 changed files with 308 additions and 26 deletions

View file

@ -3,6 +3,11 @@
grid-template-columns: repeat(6, min-content);
grid-gap: 8px 16px;
margin-top: 16px;
background-color: #333;
padding: 16px;
width: min-content;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
#datapoints .group {
font-size: 1.1em;

View file

@ -1,3 +1,6 @@
body {
background-color: #f8f8f8;
}
.widgets .action #run-result {
background-color: #fff !important;
border: 1px solid #ccc;
@ -35,3 +38,9 @@ button:focus {
#areas .area .section .name {
font-weight: normal;
}
#datapoints,
#problems-list,
#acknowledged-list {
background-color: #fff !important;
border: 1px solid #ddd;
}

View file

@ -0,0 +1,6 @@
body {
background-image: url(/images/v0/gruvbox/background.svg);
}
#areas .area {
box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.5);
}

View file

@ -72,7 +72,7 @@ html {
#areas {
display: flex;
flex-wrap: wrap;
gap: 12px;
gap: 24px;
margin-top: 16px;
}
#areas .area {

View file

@ -3,7 +3,13 @@
display: grid;
grid-template-columns: repeat(6, min-content);
grid-gap: 4px 16px;
margin-top: 32px;
margin-bottom: 32px;
background-color: #333;
padding: 16px;
width: min-content;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
#problems-list div,
#acknowledged-list div {
@ -29,7 +35,7 @@
#areas {
display: flex;
flex-wrap: wrap;
gap: 12px;
gap: 24px;
margin-top: 16px;
}
#areas .area .section {