Skip to content

Commit

Permalink
monitoring/CSS: Don't use text-small mixin for check source reachable…
Browse files Browse the repository at this point in the history
… information

refs #5543
  • Loading branch information
lippserd committed Nov 2, 2015
1 parent 569e920 commit 4c576a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions modules/monitoring/public/css/tables.less
Expand Up @@ -102,6 +102,7 @@
letter-spacing: 1px;
}

.check-source-meta,
.state-meta {
font-size: @font-size-small;
}

0 comments on commit 4c576a7

Please sign in to comment.