diff --git a/html/images/icons/graphs.png b/html/images/icons/graphs.png index 85bc6238a..01e933a61 100644 Binary files a/html/images/icons/graphs.png and b/html/images/icons/graphs.png differ diff --git a/html/images/icons/greyscale/current.png b/html/images/icons/greyscale/current.png new file mode 100644 index 000000000..952822c76 Binary files /dev/null and b/html/images/icons/greyscale/current.png differ diff --git a/html/images/icons/greyscale/fanspeeds.png b/html/images/icons/greyscale/fanspeeds.png new file mode 100644 index 000000000..ca36f5602 Binary files /dev/null and b/html/images/icons/greyscale/fanspeeds.png differ diff --git a/html/images/icons/greyscale/frequencies.png b/html/images/icons/greyscale/frequencies.png new file mode 100644 index 000000000..15ef7c38b Binary files /dev/null and b/html/images/icons/greyscale/frequencies.png differ diff --git a/html/images/icons/greyscale/graphs.png b/html/images/icons/greyscale/graphs.png new file mode 100644 index 000000000..1ebeb1055 Binary files /dev/null and b/html/images/icons/greyscale/graphs.png differ diff --git a/html/images/icons/greyscale/memory.png b/html/images/icons/greyscale/memory.png new file mode 100644 index 000000000..1349695ff Binary files /dev/null and b/html/images/icons/greyscale/memory.png differ diff --git a/html/images/icons/greyscale/nographs.png b/html/images/icons/greyscale/nographs.png new file mode 100644 index 000000000..ac9cb4713 Binary files /dev/null and b/html/images/icons/greyscale/nographs.png differ diff --git a/html/images/icons/greyscale/power.png b/html/images/icons/greyscale/power.png new file mode 100644 index 000000000..c9cfb6327 Binary files /dev/null and b/html/images/icons/greyscale/power.png differ diff --git a/html/images/icons/greyscale/processors.png b/html/images/icons/greyscale/processors.png new file mode 100644 index 000000000..bf46a9368 Binary files /dev/null and b/html/images/icons/greyscale/processors.png differ diff --git a/html/images/icons/greyscale/sensors.png b/html/images/icons/greyscale/sensors.png new file mode 100644 index 000000000..8c416d630 Binary files /dev/null and b/html/images/icons/greyscale/sensors.png differ diff --git a/html/images/icons/greyscale/storage.png b/html/images/icons/greyscale/storage.png new file mode 100644 index 000000000..6034d45d9 Binary files /dev/null and b/html/images/icons/greyscale/storage.png differ diff --git a/html/images/icons/greyscale/temperatures.png b/html/images/icons/greyscale/temperatures.png new file mode 100644 index 000000000..b743cb1e2 Binary files /dev/null and b/html/images/icons/greyscale/temperatures.png differ diff --git a/html/images/icons/greyscale/voltages.png b/html/images/icons/greyscale/voltages.png new file mode 100644 index 000000000..ff8e7338a Binary files /dev/null and b/html/images/icons/greyscale/voltages.png differ diff --git a/html/images/icons/nographs.png b/html/images/icons/nographs.png index 91e45429a..5d41f96b2 100644 Binary files a/html/images/icons/nographs.png and b/html/images/icons/nographs.png differ diff --git a/html/pages/health.php b/html/pages/health.php index 794f81e56..e70d0640f 100644 --- a/html/pages/health.php +++ b/html/pages/health.php @@ -12,8 +12,12 @@ $sep = ""; foreach ($datas as $texttype) { $type = strtolower($texttype); echo($sep); - if ($_GET['opta'] == $type) { echo(""); } - echo(''); + if ($_GET['opta'] == $type) { + echo(""); + echo(''); + } else { + echo(''); + } echo(" " . $texttype ."\n"); if ($_GET['opta'] == $type) { echo(""); } $sep = ' | '; @@ -22,13 +26,19 @@ unset ($sep); echo('
'); -if($_GET['optb'] == "graphs") { echo(''); } -echo(''); +if($_GET['optb'] == "graphs") { echo(''); + echo(''); +} else { + echo(''); +} echo(' Graphs'); if($_GET['optb'] == "graphs") { echo(''); } echo(' | '); -if($_GET['optb'] == "nographs") { echo(''); } -echo(''); +if($_GET['optb'] == "nographs") { echo(''); + echo(''); +} else { + echo(''); +} echo(' No Graphs'); if($_GET['optb'] == "nographs") { echo(''); }