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
This commit is contained in:
Adam Amstrong
2010-06-12 14:18:56 +00:00
parent 847d5c6204
commit f94aeee0ef
15 changed files with 16 additions and 6 deletions

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 710 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 521 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 632 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 539 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 566 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 B

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 480 B

After

Width:  |  Height:  |  Size: 579 B

View File

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