Skip to content

Commit

Permalink
[4.0] com_finder actions button
Browse files Browse the repository at this point in the history
same as joomla#26105

The actions button on the smart search pages is using the wrong icon and the wrong class so the hover and active styling is also messed up
  • Loading branch information
brianteeman committed Sep 2, 2019
1 parent e9cbbcd commit 54afabc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions administrator/components/com_finder/View/Filters/HtmlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ protected function addToolbar()
$dropdown = $toolbar->dropdownButton('status-group')
->text('JTOOLBAR_CHANGE_STATUS')
->toggleSplit(false)
->icon('fa fa-globe')
->buttonClass('btn btn-info')
->icon('fa fa-ellipsis-h')
->buttonClass('btn btn-action')
->listCheck(true);

$childBar = $dropdown->getChildToolbar();
Expand Down
4 changes: 2 additions & 2 deletions administrator/components/com_finder/View/Index/HtmlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ protected function addToolbar()
$dropdown = $toolbar->dropdownButton('status-group')
->text('JTOOLBAR_CHANGE_STATUS')
->toggleSplit(false)
->icon('fa fa-globe')
->buttonClass('btn btn-info')
->icon('fa fa-ellipsis-h')
->buttonClass('btn btn-action')
->listCheck(true);

$childBar = $dropdown->getChildToolbar();
Expand Down
4 changes: 2 additions & 2 deletions administrator/components/com_finder/View/Maps/HtmlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ protected function addToolbar()
$dropdown = $toolbar->dropdownButton('status-group')
->text('JTOOLBAR_CHANGE_STATUS')
->toggleSplit(false)
->icon('fa fa-globe')
->buttonClass('btn btn-info')
->icon('fa fa-ellipsis-h')
->buttonClass('btn btn-action')
->listCheck(true);

$childBar = $dropdown->getChildToolbar();
Expand Down

0 comments on commit 54afabc

Please sign in to comment.