Misc theme fixes
This commit is contained in:
parent
ec7919c9e5
commit
e73d28a8f6
24 changed files with 308 additions and 26 deletions
|
|
@ -3,6 +3,11 @@
|
|||
grid-template-columns: repeat(6, min-content);
|
||||
grid-gap: 8px 16px;
|
||||
margin-top: 16px;
|
||||
background-color: #2979b8;
|
||||
padding: 16px;
|
||||
width: min-content;
|
||||
border-top-left-radius: 8px;
|
||||
border-top-right-radius: 8px;
|
||||
}
|
||||
#datapoints .group {
|
||||
font-size: 1.1em;
|
||||
|
|
@ -17,7 +22,7 @@
|
|||
#datapoints .header {
|
||||
font-weight: 800;
|
||||
font-size: 0.85em;
|
||||
color: #333;
|
||||
color: #555;
|
||||
}
|
||||
#datapoints div {
|
||||
white-space: nowrap;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -72,7 +72,7 @@ html {
|
|||
#areas {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
gap: 24px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
#areas .area {
|
||||
|
|
@ -110,7 +110,7 @@ html {
|
|||
dialog {
|
||||
background: #1b4e78;
|
||||
border: 1px solid #3f90d4;
|
||||
color: #333;
|
||||
color: #555;
|
||||
box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
html,
|
||||
|
|
@ -122,7 +122,7 @@ body {
|
|||
background: #fff;
|
||||
font-family: sans-serif;
|
||||
font-weight: 300;
|
||||
color: #333;
|
||||
color: #555;
|
||||
font-size: 11pt;
|
||||
}
|
||||
h1,
|
||||
|
|
@ -159,7 +159,7 @@ textarea,
|
|||
select {
|
||||
font-family: monospace;
|
||||
background: #fff;
|
||||
color: #333;
|
||||
color: #555;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #484848;
|
||||
font-size: 1em;
|
||||
|
|
@ -167,7 +167,7 @@ select {
|
|||
}
|
||||
button {
|
||||
background: #1b4e78;
|
||||
color: #333;
|
||||
color: #555;
|
||||
padding: 8px 32px;
|
||||
border: 1px solid #2e84cb;
|
||||
font-size: 1em;
|
||||
|
|
@ -181,12 +181,12 @@ button:focus {
|
|||
border-bottom: 1px solid #d9d9d9;
|
||||
}
|
||||
span.date {
|
||||
color: #333;
|
||||
color: #555;
|
||||
font-weight: 800;
|
||||
}
|
||||
span.time {
|
||||
font-size: 0.9em;
|
||||
color: #333;
|
||||
color: #555;
|
||||
}
|
||||
span.seconds {
|
||||
display: none;
|
||||
|
|
|
|||
|
|
@ -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: #2979b8;
|
||||
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 {
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
min-height: 8em;
|
||||
}
|
||||
.widgets .action #run-result.ok {
|
||||
color: #333;
|
||||
color: #555;
|
||||
}
|
||||
.widgets .action #run-result.error {
|
||||
color: #fb4934;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -72,7 +72,7 @@ html {
|
|||
#areas {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
gap: 24px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
#areas .area {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue