mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix yellow border around devices selector as well
git-svn-id: http://www.observium.org/svn/observer/trunk@632 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -26,7 +26,7 @@ function generate_port_thumbnail($args) {
|
|||||||
echo $output;
|
echo $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_optionbar_start () {
|
function print_optionbar_start ($height = 20) {
|
||||||
echo("
|
echo("
|
||||||
<div style='margin:auto; text-align: center; margin-top: 0px; margin-bottom: 10px;'>
|
<div style='margin:auto; text-align: center; margin-top: 0px; margin-bottom: 10px;'>
|
||||||
<b class='rounded'>
|
<b class='rounded'>
|
||||||
@@ -36,7 +36,7 @@ function print_optionbar_start () {
|
|||||||
<b class='rounded4'></b>
|
<b class='rounded4'></b>
|
||||||
<b class='rounded5'></b></b>
|
<b class='rounded5'></b></b>
|
||||||
<div class='roundedfg' style='padding: 0px 5px;'>
|
<div class='roundedfg' style='padding: 0px 5px;'>
|
||||||
<div style='margin: auto; text-align: left; padding: 2px 5px; padding-left: 11px; clear: both; display:block; height:20px;'>");
|
<div style='margin: auto; text-align: left; padding: 2px 5px; padding-left: 11px; clear: both; display:block; height:" . $height . "px;'>");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,4 @@
|
|||||||
<div style='margin:auto; text-align: center; margin-top: 10px;'>
|
<?php print_optionbar_start(52); ?>
|
||||||
<b class='rounded'>
|
|
||||||
<b class='rounded1'></b>
|
|
||||||
<b class='rounded2'></b>
|
|
||||||
<b class='rounded3'></b>
|
|
||||||
<b class='rounded4'></b>
|
|
||||||
<b class='rounded5'></b></b>
|
|
||||||
<div class='roundedfg' style='padding: 0px 5px;'>
|
|
||||||
<div style='margin: auto; padding:5px;'>
|
|
||||||
<table cellpadding=4 cellspacing=0 class=devicetable width=100%>
|
<table cellpadding=4 cellspacing=0 class=devicetable width=100%>
|
||||||
<form method='post' action=''>
|
<form method='post' action=''>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -84,18 +76,10 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</form>
|
</form>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<b class='rounded'>
|
|
||||||
<b class='rounded5'></b>
|
|
||||||
<b class='rounded4'></b>
|
|
||||||
<b class='rounded3'></b>
|
|
||||||
<b class='rounded2'></b>
|
|
||||||
<b class='rounded1'></b></b>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
print_optionbar_end();
|
||||||
|
|
||||||
|
|
||||||
if($_POST['hostname']) { $where = " AND hostname LIKE '%".$_POST['hostname']."%'"; }
|
if($_POST['hostname']) { $where = " AND hostname LIKE '%".$_POST['hostname']."%'"; }
|
||||||
if($_POST['os']) { $where = " AND os = '".$_POST['os']."'"; }
|
if($_POST['os']) { $where = " AND os = '".$_POST['os']."'"; }
|
||||||
|
|||||||
Reference in New Issue
Block a user