diff --git a/PowerShell/ScubaGear/Modules/CreateReport/CreateReport.psm1 b/PowerShell/ScubaGear/Modules/CreateReport/CreateReport.psm1 index 06dd3d2e7f..7e1eda07f4 100644 --- a/PowerShell/ScubaGear/Modules/CreateReport/CreateReport.psm1 +++ b/PowerShell/ScubaGear/Modules/CreateReport/CreateReport.psm1 @@ -226,7 +226,7 @@ function New-Report { # Finish building the html report $Title = "$($FullName) Baseline Report" $AADWarning = "Exclusions must only be used if they are approved within an organization's security risk acceptance process. - Please reference this section in the README file + Please reference this section in the README file file for a list of the policies that accept exclusions and the instructions for setting up exclusions in the configuration file. Exclusions can introduce grave risks to your system and must be managed carefully." $NoWarning = "
" diff --git a/PowerShell/ScubaGear/Modules/CreateReport/scripts/main.js b/PowerShell/ScubaGear/Modules/CreateReport/scripts/main.js index e3131e24dd..ac917c360f 100644 --- a/PowerShell/ScubaGear/Modules/CreateReport/scripts/main.js +++ b/PowerShell/ScubaGear/Modules/CreateReport/scripts/main.js @@ -18,6 +18,7 @@ const colorRows = () => { } else if (rows[i].children[statusCol].innerHTML === "Fail") { rows[i].style.background = "var(--test-fail)"; + rows[i].style.color = "var(--test-error-color)"; } else if (rows[i].children[statusCol].innerHTML === "Warning") { rows[i].style.background = "var(--test-warning)"; diff --git a/PowerShell/ScubaGear/Modules/CreateReport/styles/main.css b/PowerShell/ScubaGear/Modules/CreateReport/styles/main.css index 5821d16ea7..440af37c49 100644 --- a/PowerShell/ScubaGear/Modules/CreateReport/styles/main.css +++ b/PowerShell/ScubaGear/Modules/CreateReport/styles/main.css @@ -38,7 +38,7 @@ html[data-theme='dark'] { --note-color: #ee4e04; --header-bottom: rgb(221, 221, 221); --link-color: #85B065; - --unvisited-link-color: #0092CC; + --unvisited-link-color: #E6F598; --text-color: #bdbdbd; --uuid-color: #999999; --border-color: #7b7b7b; @@ -76,6 +76,23 @@ h4 { margin-bottom: 0.313em; } +h4 .aad-link { + font-family: Arial, Helvetica, sans-serif; + color: var(--unvisited-link-color); + text-decoration: underline; +} + +h4 .aad-link:visited { + font-family: Arial, Helvetica, sans-serif; + color: var(--link-color); +} + +h4 .aad-link:hover { + font-family: Arial, Helvetica, sans-serif; + color: var(--link-color); + text-decoration: none; +} + .links { display: flex; @@ -232,7 +249,7 @@ th.conditions { } #toggle-text { - color: #404040; + color: var(--text-color); margin: 0.313em 3.125em; font-family: Arial, Helvetica, sans-serif; font-size: 0.875em; diff --git a/PowerShell/ScubaGear/Sample-Reports/IndividualReports/AADReport.html b/PowerShell/ScubaGear/Sample-Reports/IndividualReports/AADReport.html index 632ce17587..26d071eeef 100644 Binary files a/PowerShell/ScubaGear/Sample-Reports/IndividualReports/AADReport.html and b/PowerShell/ScubaGear/Sample-Reports/IndividualReports/AADReport.html differ