Checkpoint

This commit is contained in:
Magnus Åhall 2026-02-23 09:39:52 +01:00
parent 4637689db4
commit 5112113aae
4 changed files with 104 additions and 40 deletions

View file

@ -18,21 +18,33 @@ body {
.records-tree {
display: grid;
grid-template-columns: min-content 1fr;
white-space: nowrap;
.fqdn, .record {
border-bottom: 1px solid #aaa;
.top, .record, .type {
border-bottom: 1px solid #ccc;
padding: 4px 0px;
}
.top {
font-weight: bold;
}
background-color: #f8f8f8;
&>.top {
span:first-child {
/*color: #004680;*/
}
span:last-child {
color: #444;
font-weight: normal;
}
}
.top + .type {
background-color: #f8f;
}
.record {
display: none;
/*display: none;*/
font-weight: normal;
color: #444;
@ -48,4 +60,8 @@ body {
color: #888;
}
}
.record + .type {
color: #f0f;
}
}