mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-07 22:25:35 +00:00
Improve styling for live-loaded log events
Live-loaded notification events used blue border which looked bad both in light mode and dark mode. Now fixed to use red.
This commit is contained in:
parent
7734839bcc
commit
c99c357709
2 changed files with 3 additions and 0 deletions
static/css
|
@ -84,6 +84,7 @@
|
|||
#log tr.missing td {
|
||||
color: #d9534f;
|
||||
background: var(--log-missing-bg);
|
||||
border-bottom: 1px solid var(--log-missing-border);
|
||||
}
|
||||
|
||||
#log tr.missing td:nth-child(4) {
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
--link-color: #0091EA;
|
||||
--link-hover-color: #00629e;
|
||||
--log-missing-bg: #fff3f2;
|
||||
--log-missing-border: #fbe2e0;
|
||||
--modal-content-bg: #fff;
|
||||
--nav-link-hover-bg: #eee;
|
||||
--panel-bg: #fff;
|
||||
|
@ -123,6 +124,7 @@ body.dark {
|
|||
--link-color: hsl(202.8, 100%, 55%);
|
||||
--link-hover-color: hsl(202.8, 100%, 65%);
|
||||
--log-missing-bg: #2d1e21;
|
||||
--log-missing-border: #403033;
|
||||
--modal-content-bg: #1f1f22;
|
||||
--nav-link-hover-bg: #383840;
|
||||
--panel-bg: hsl(240, 6%, 16%);
|
||||
|
|
Loading…
Add table
Reference in a new issue