mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-05-28 04:34:08 -04:00
ActionBar: move fullscreen action more to the right
This commit is contained in:
parent
20f5902160
commit
d8a8e488a7
1 changed files with 14 additions and 13 deletions
|
|
@ -41,6 +41,20 @@ class ActionBar extends BaseElement
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
$this->add(
|
||||
Link::create(
|
||||
$this->translate('Fullscreen'),
|
||||
$url->with('showFullscreen', true),
|
||||
null,
|
||||
array(
|
||||
'class' => 'icon-resize-full-alt',
|
||||
'title' => $this->translate('Switch to fullscreen mode'),
|
||||
'data-base-target' => '_main',
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
$hasChanges = $config->hasSimulations() || $config->hasBeenChanged();
|
||||
|
||||
if ($renderer->isLocked()) {
|
||||
|
|
@ -83,19 +97,6 @@ class ActionBar extends BaseElement
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
$this->add(
|
||||
Link::create(
|
||||
$this->translate('Fullscreen'),
|
||||
$url->with('showFullscreen', true),
|
||||
null,
|
||||
array(
|
||||
'class' => 'icon-resize-full-alt',
|
||||
'title' => $this->translate('Switch to fullscreen mode'),
|
||||
'data-base-target' => '_main',
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
protected function currentProcessParams($url)
|
||||
|
|
|
|||
Loading…
Reference in a new issue