more icon improvements (dynamic grey/colour icons on health menu, ALLES SEXYPANTS!)
git-svn-id: http://www.observium.org/svn/observer/trunk@1149 61d68cd4-352d-0410-923a-c4978735b2b8
|
Before Width: | Height: | Size: 496 B After Width: | Height: | Size: 710 B |
BIN
html/images/icons/greyscale/current.png
Normal file
|
After Width: | Height: | Size: 541 B |
BIN
html/images/icons/greyscale/fanspeeds.png
Normal file
|
After Width: | Height: | Size: 707 B |
BIN
html/images/icons/greyscale/frequencies.png
Normal file
|
After Width: | Height: | Size: 521 B |
BIN
html/images/icons/greyscale/graphs.png
Normal file
|
After Width: | Height: | Size: 632 B |
BIN
html/images/icons/greyscale/memory.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
html/images/icons/greyscale/nographs.png
Normal file
|
After Width: | Height: | Size: 522 B |
BIN
html/images/icons/greyscale/power.png
Normal file
|
After Width: | Height: | Size: 539 B |
BIN
html/images/icons/greyscale/processors.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
html/images/icons/greyscale/sensors.png
Normal file
|
After Width: | Height: | Size: 566 B |
BIN
html/images/icons/greyscale/storage.png
Normal file
|
After Width: | Height: | Size: 607 B |
BIN
html/images/icons/greyscale/temperatures.png
Normal file
|
After Width: | Height: | Size: 685 B |
BIN
html/images/icons/greyscale/voltages.png
Normal file
|
After Width: | Height: | Size: 533 B |
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 579 B |
@@ -12,8 +12,12 @@ $sep = "";
|
||||
foreach ($datas as $texttype) {
|
||||
$type = strtolower($texttype);
|
||||
echo($sep);
|
||||
if ($_GET['opta'] == $type) { echo("<strong>"); }
|
||||
echo('<img src="images/icons/'.$type.'.png" class="optionicon" />');
|
||||
if ($_GET['opta'] == $type) {
|
||||
echo("<strong>");
|
||||
echo('<img src="images/icons/'.$type.'.png" class="optionicon" />');
|
||||
} else {
|
||||
echo('<img src="images/icons/greyscale/'.$type.'.png" class="optionicon" />');
|
||||
}
|
||||
echo("<a href='".$config['base_url']."/health/" . $type . "/" . $_GET['optb']. "/'> " . $texttype ."</a>\n");
|
||||
if ($_GET['opta'] == $type) { echo("</strong>"); }
|
||||
$sep = ' | ';
|
||||
@@ -22,13 +26,19 @@ unset ($sep);
|
||||
|
||||
echo('<div style="float: right;">');
|
||||
|
||||
if($_GET['optb'] == "graphs") { echo('<strong>'); }
|
||||
echo('<img src="images/16/chart_curve.png" class="optionicon" />');
|
||||
if($_GET['optb'] == "graphs") { echo('<strong>');
|
||||
echo('<img src="images/icons/graphs.png" class="optionicon" />');
|
||||
} else {
|
||||
echo('<img src="images/icons/greyscale/graphs.png" class="optionicon" />');
|
||||
}
|
||||
echo('<a href="http://demo.observernms.org/health/'. $_GET['opta'].'/graphs/"> Graphs</a>');
|
||||
if($_GET['optb'] == "graphs") { echo('</strong>'); }
|
||||
echo(' | ');
|
||||
if($_GET['optb'] == "nographs") { echo('<strong>'); }
|
||||
echo('<img src="images/16/table.png" class="optionicon" />');
|
||||
if($_GET['optb'] == "nographs") { echo('<strong>');
|
||||
echo('<img src="images/icons/nographs.png" class="optionicon" />');
|
||||
} else {
|
||||
echo('<img src="images/icons/greyscale/nographs.png" class="optionicon" />');
|
||||
}
|
||||
echo('<a href="http://demo.observernms.org/health/'. $_GET['opta'].'/nographs/"> No Graphs</a>');
|
||||
if($_GET['optb'] == "nographs") { echo('</strong>'); }
|
||||
|
||||
|
||||