monitoring/CSS: Don't use text-small mixin for check source reachable information

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-02 10:27:48 +01:00
parent 569e92021e
commit 4c576a7a91
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@
} ?> } ?>
<?= $this->escape($object->check_source) ?> <?= $this->escape($object->check_source) ?>
<?php if ($object->is_reachable !== null): ?> <?php if ($object->is_reachable !== null): ?>
<span class="text-small"><?= (bool) $object->is_reachable ? $this->translate('is reachable') : $this->translate('is not reachable') ?></span> <span class="check-source-meta"><?= (bool) $object->is_reachable ? $this->translate('is reachable') : $this->translate('is not reachable') ?></span>
<?php endif ?> <?php endif ?>
</p> </p>
</td> </td>

View File

@ -102,6 +102,7 @@
letter-spacing: 1px; letter-spacing: 1px;
} }
.check-source-meta,
.state-meta { .state-meta {
font-size: @font-size-small; font-size: @font-size-small;
} }