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) ?>
<?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 ?>
</p>
</td>

View File

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