Visual tweaks

This commit is contained in:
Latif Khalifa
2013-10-13 15:00:55 +02:00
parent 260b892e41
commit 2abff34bce
2 changed files with 13 additions and 11 deletions

View File

@@ -153,14 +153,14 @@ class Layout
//]]> //]]>
</script> </script>
<div style="padding-top:20px;"> <div style="padding-top:10px;">
<div style="display: inline-block;"> <div style="display: inline-block; margin-right: 30px;">
<a href="<?php echo URL_ROOT ?>"><img src="images/singularity_icon.png" width="150px" height="150px"/></a> <a href="<?php echo URL_ROOT ?>"><img src="images/singularity_icon.png" width="100px" height="100px"/></a>
</div> </div>
<div style="display: inline-block;color: #eee; padding: 55px 0 0 30px; vertical-align: top;"> <div style="display: inline-block;color: #eee; padding-bottom: 10px; vertical-align: bottom;">
<a href="<?php echo URL_ROOT ?>" style="font-size: 4em; font-weight: bold;">Singularity Viewer</a> <a href="<?php echo URL_ROOT ?>" style="font-size: 3em; font-weight: bold;">Singularity Viewer</a>
<br/> <br/>
<span style="font-size: 1.6em;">Automated Crash Report Processing</span> <span style="font-size: 1.6em;">Automated Crash Report Processing</span>
</div> </div>
</div> </div>

View File

@@ -236,6 +236,8 @@ for($i = 0; $i < count($grids); $i++)
function renderPaginator($total) function renderPaginator($total)
{ {
$l = $_SERVER["PHP_SELF"];
ob_start(); ob_start();
?> ?>
<script> <script>
@@ -296,15 +298,15 @@ for($i = 0; $i < count($grids); $i++)
</script> </script>
<!--div id="paginator" class="ui-widget-header ui-corner-all" style="display: inline-block; padding: 4px"--> <!--div id="paginator" class="ui-widget-header ui-corner-all" style="display: inline-block; padding: 4px"-->
<button id="first">First</button> <a id="first">First</a>
<button id="previous">Previous</button> <a id="previous">Previous</a>
<div style="display: inline-block; text-align: center; width: 175px;"> <div style="display: inline-block; text-align: center; width: 175px;">
<?php echo $this->offset + 1 ?> - <?php echo $this->offset + 1 ?> -
<?php echo $this->offset + $this->limit > $total ? $total : $this->offset + $this->limit ?> out of <?php echo $this->offset + $this->limit > $total ? $total : $this->offset + $this->limit ?> out of
<?php echo $total ?> <?php echo $total ?>
</div> </div>
<button id="next">Next</button> <a id="next">Next</a>
<button id="last">Last</button> <a id="last">Last</a>
<!--/div--> <!--/div-->
<?php <?php