Made breadcrumbs dynamic and moved it to a shared partial view.

This commit is contained in:
Daniel Wathen
2023-01-26 15:05:27 -07:00
parent a02b544f58
commit 39d152ca48
13 changed files with 70 additions and 62 deletions

View File

@ -1 +1 @@
[{"Date":"2023-01-23T00:00:00-07:00","ASM":7,"HTR":16},{"Date":"2023-01-24T00:00:00-07:00","ASM":7,"HTR":15}]
[{"Date":"2023-01-23T00:00:00-07:00","ASM":7,"HTR":16},{"Date":"2023-01-24T00:00:00-07:00","ASM":7,"HTR":15},{"Date":"2023-01-26T00:00:00-07:00","ASM":7,"HTR":14}]

View File

@ -104,4 +104,25 @@ body {
.tableDowntime {
color: rgb(212, 111, 35);
background-color: rgba(212, 111, 35, 0.3);
}
.disableLink a:link {
color: grey;
text-decoration: none;
}
.disableLink a:visited {
color: grey;
text-decoration: none;
}
.disableLink a:hover {
color: grey;
text-decoration: none;
cursor: default;
}
.disableLink a:active {
color: grey;
text-decoration: none;
}