Little fixes for small layouts
This commit is contained in:
parent
70f55f65b4
commit
4847448a26
2 changed files with 8 additions and 6 deletions
|
@ -139,9 +139,8 @@ footer .main-wrapper {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
color: silver;
|
color: silver;
|
||||||
}
|
}
|
||||||
footer span:not(:last-child):after {
|
footer span:not(:last-of-type):after {
|
||||||
content: '\022C5';
|
content: '\2000\022C5\2000';
|
||||||
margin: 0 0.5em;
|
|
||||||
}
|
}
|
||||||
footer a {
|
footer a {
|
||||||
color: silver;
|
color: silver;
|
||||||
|
@ -375,6 +374,9 @@ ul.tagit input {
|
||||||
.tabs li a:focus {
|
.tabs li a:focus {
|
||||||
color: hsl(0,70%,45%);
|
color: hsl(0,70%,45%);
|
||||||
}
|
}
|
||||||
|
.tab-content {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -36,9 +36,9 @@ CustomAssetViewDecorator::addScript('core.js');
|
||||||
<footer>
|
<footer>
|
||||||
<div class="main-wrapper">
|
<div class="main-wrapper">
|
||||||
<hr>
|
<hr>
|
||||||
<span>Load: <?php echo sprintf('%.05f', microtime(true) - $this->context->startTime) ?>s</span>
|
<span>Load: <?php echo sprintf('%.05f', microtime(true) - $this->context->startTime) ?>s</span>
|
||||||
<span>Queries: <?php echo count(\Chibi\Database::getLogs()) ?></span>
|
<span>Queries: <?php echo count(\Chibi\Database::getLogs()) ?></span>
|
||||||
<span><a href="<?php echo SZURU_LINK ?>">szurubooru v<?php echo SZURU_VERSION ?></a></span>
|
<span><a href="<?php echo SZURU_LINK ?>">szurubooru v<?php echo SZURU_VERSION ?></a></span>
|
||||||
<?php if (PrivilegesHelper::confirm(Privilege::ListLogs)): ?>
|
<?php if (PrivilegesHelper::confirm(Privilege::ListLogs)): ?>
|
||||||
<span><a href="<?php echo \Chibi\UrlHelper::route('log', 'list') ?>">Logs</a></span>
|
<span><a href="<?php echo \Chibi\UrlHelper::route('log', 'list') ?>">Logs</a></span>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
Loading…
Reference in a new issue