monitoring/CSS: Don't use text-small in the config overview

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-03 12:19:52 +01:00
parent 3f1eca9baa
commit 6fbe65e415
2 changed files with 7 additions and 2 deletions

View File

@ -35,7 +35,7 @@
'title' => sprintf($this->translate('Edit monitoring backend %s'), $backendName)
)
) ?>
<span class="text-small">&#40;<?= sprintf(
<span class="config-label-meta">&#40;<?= sprintf(
$this->translate('Type: %s'),
$this->escape($config->type === 'ido' ? 'IDO' : ucfirst($config->type))
) ?>&#41;
@ -90,7 +90,7 @@
'title' => sprintf($this->translate('Edit command transport %s'), $transportName)
)
); ?>
<span class="text-small">&#40;<?= sprintf(
<span class="config-label-meta">&#40;<?= sprintf(
$this->translate('Type: %s'),
$config->host !== null ? $this->translate('Remote') : $this->translate('Local')
) ?>&#41;

View File

@ -7,6 +7,11 @@
font-size: @font-size-small;
}
// Type information for backends in the monitoring config
.config-label-meta {
font-size: @font-size-small;
}
// Column for counts, e.g. host group members
.count-col {
width: 4em;