Skip to content

Commit

Permalink
[4.0] Fix 3 toolbar buttons (#19795)
Browse files Browse the repository at this point in the history
* [4.0] Fix 4 toolbar buttons

com-redirect bulk import
com-media create folder
com-media delete

They all had an outline class - hard to see the problem right now except by viewing the source but it will become an issue with the new template being developed

* Update batch.php
  • Loading branch information
brianteeman authored and wilsonge committed Mar 1, 2018
1 parent b0bbab1 commit d36f931
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

$title = JText::_('COM_MEDIA_CREATE_NEW_FOLDER');
?>
<button class="btn btn-sm btn-outline-info" onclick="MediaManager.Event.fire('onClickCreateFolder');">
<button class="btn btn-sm btn-info" onclick="MediaManager.Event.fire('onClickCreateFolder');">
<span class="icon-folder-close" title="<?php echo $title; ?>"></span> <?php echo $title; ?>
</button>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

$title = JText::_('JTOOLBAR_DELETE');
?>
<button class="btn btn-sm btn-outline-danger" onclick="MediaManager.Event.fire('onClickDelete');">
<button class="btn btn-sm btn-danger" onclick="MediaManager.Event.fire('onClickDelete');">
<span class="icon-delete" title="<?php echo $title; ?>"></span> <?php echo $title; ?>
</button>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
$title = $displayData['title'];

?>
<button data-toggle="modal" onclick="{jQuery( '#collapseModal' ).modal('show'); return true;}" class="btn btn-outline-primary btn-sm">
<button data-toggle="modal" onclick="{jQuery( '#collapseModal' ).modal('show'); return true;}" class="btn btn-sm btn-primary">
<span class="icon-checkbox-partial" aria-hidden="true" title="<?php echo $title; ?>"></span>
<?php echo $title; ?>
</button>

0 comments on commit d36f931

Please sign in to comment.