From b74f8ce51db7101983a3f1020f2f44e23d3a1e3e Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 1 Oct 2015 13:19:28 +0200 Subject: [PATCH] Wizard: Add css class control-group to all buttons refs #5543 --- library/Icinga/Web/Wizard.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/library/Icinga/Web/Wizard.php b/library/Icinga/Web/Wizard.php index d397db52b2..47ab891da3 100644 --- a/library/Icinga/Web/Wizard.php +++ b/library/Icinga/Web/Wizard.php @@ -608,6 +608,7 @@ protected function addButtons(Form $page) 'button', static::BTN_NEXT, array( + 'class' => 'control-button', 'type' => 'submit', 'value' => $pages[1]->getName(), 'label' => t('Next'), @@ -619,6 +620,7 @@ protected function addButtons(Form $page) 'button', static::BTN_PREV, array( + 'class' => 'control-button', 'type' => 'submit', 'value' => $pages[$index - 1]->getName(), 'label' => t('Back'), @@ -630,6 +632,7 @@ protected function addButtons(Form $page) 'button', static::BTN_NEXT, array( + 'class' => 'control-button', 'type' => 'submit', 'value' => $pages[$index + 1]->getName(), 'label' => t('Next'), @@ -641,6 +644,7 @@ protected function addButtons(Form $page) 'button', static::BTN_PREV, array( + 'class' => 'control-button', 'type' => 'submit', 'value' => $pages[$index - 1]->getName(), 'label' => t('Back'), @@ -652,6 +656,7 @@ protected function addButtons(Form $page) 'button', static::BTN_NEXT, array( + 'class' => 'control-button', 'type' => 'submit', 'value' => $page->getName(), 'label' => t('Finish'),