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

@ -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;
}