Skip to content

Commit

Permalink
[WebProfilerBundle] Fixed label reference, fixed markup, optimized cs…
Browse files Browse the repository at this point in the history
…s and images
  • Loading branch information
pborreli authored and fabpot committed Oct 18, 2010
1 parent dbfa06c commit 2dc357d
Show file tree
Hide file tree
Showing 17 changed files with 6 additions and 8 deletions.
Expand Up @@ -86,9 +86,7 @@ img {
}

.content {
padding: 15px;
padding-left: 35px;
padding-top: 15px;
padding: 15px 15px 15px 35px;
}

.search, .import {
Expand Down
Expand Up @@ -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%;
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -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
Expand Up @@ -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; ?>
Expand Down
Expand Up @@ -11,7 +11,7 @@ class="sf-toolbarreset"
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%;
Expand Down

0 comments on commit 2dc357d

Please sign in to comment.