diff --git a/library/Icinga/Web/Widget/ItemList/MigrationListItem.php b/library/Icinga/Web/Widget/ItemList/MigrationListItem.php index d75d179d6..ee0f03fef 100644 --- a/library/Icinga/Web/Widget/ItemList/MigrationListItem.php +++ b/library/Icinga/Web/Widget/ItemList/MigrationListItem.php @@ -39,7 +39,11 @@ class MigrationListItem extends BaseListItem $title->addHtml( new HtmlElement('span', null, Text::create($parentDirs)), - new HtmlElement('strong', null, Text::create($this->item->getVersion() . '.sql')) + new HtmlElement( + 'span', + Attributes::create(['class' => 'version']), + Text::create($this->item->getVersion() . '.sql') + ) ); if ($this->item->getLastState()) { diff --git a/public/css/icinga/pending-migration.less b/public/css/icinga/pending-migration.less index 581a888fc..518e353e4 100644 --- a/public/css/icinga/pending-migration.less +++ b/public/css/icinga/pending-migration.less @@ -22,6 +22,10 @@ .caption.empty-state { color: @gray-semilight; } + + span.version { + color: @text-color; + } } .migration-form {