@@ -86,9 +86,7 @@ img {
}
.content {
- padding: 15px;
- padding-left: 35px;
- padding-top: 15px;
+ padding: 15px 15px 15px 35px;
.search, .import {
@@ -11,7 +11,7 @@ build: 56
background: #cbcbcb;
background-image: -moz-linear-gradient(-90deg, #e8e8e8, #cbcbcb);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e8e8e8), to(#cbcbcb));
- bottom: 0px;
+ bottom: 0;
left:0;
z-index: 6000000;
width: 100%;
@@ -1,5 +1,5 @@
<?php if ($data->hasException()): ?>
- <div class="count"><?php echo $data->hasException() ?></div>
+ <span class="count"><?php echo $data->hasException() ?></span>
<?php endif; ?>
<img style="margin: 0 5px 0 0; vertical-align: middle; width: 32px" width="32" height="32" alt="Exception" src="<?php echo $view->get('assets')->getUrl('bundles/webprofiler/images/exception.png') ?>" />
Exception
@@ -1,3 +1,3 @@
-<div class="count"><?php echo $data->countErrors() ?></div>
+<span class="count"><?php echo $data->countErrors() ?></span>
<img style="margin: 0 5px 0 0; vertical-align: middle; width: 32px" width="32" height="32" alt="Logs" src="<?php echo $view->get('assets')->getUrl('bundles/webprofiler/images/logger.png') ?>" />
Logs
@@ -14,7 +14,7 @@
<input type="text" name="token" id="token" />
<div class="clearfix"></div>
<label for="limit">Limit</label>
- <select name="limit">
+ <select name="limit" id="limit">
<?php foreach (array(10, 50, 100) as $l): ?>
<option<?php echo $l == $limit ? ' selected="selected"' : '' ?>><?php echo $l ?></option>
<?php endforeach; ?>
@@ -11,7 +11,7 @@