Skip to content

Commit

Permalink
Merge pull request #351 from N6REJ/340
Browse files Browse the repository at this point in the history
fixes hover issues
  • Loading branch information
roland-d authored Oct 15, 2022
2 parents 3cfdc66 + d8d6c91 commit 8b9a3e8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
</div>
<div class="row">
<div class="col-md-auto">
<a class="badge bg-info" href="<?php echo $item->pull_url; ?>" target="_blank">
<a class="badge btn-info" href="<?php echo $item->pull_url; ?>" target="_blank">
<?php echo Text::_('COM_PATCHTESTER_VIEW_ON_GITHUB'); ?>
</a>
</div>
<?php if ($this->trackerAlias) :
?>
<div class="col-md-auto">
<a class="badge bg-info"
<a class="badge btn-info"
href="https://issues.joomla.org/tracker/<?php echo $this->trackerAlias; ?>/<?php echo $item->pull_id; ?>"
target="_blank">
<?php echo Text::_('COM_PATCHTESTER_VIEW_ON_JOOMLA_ISSUE_TRACKER'); ?>
Expand All @@ -58,7 +58,7 @@
<?php if ($item->applied) :
?>
<div class="col-md-auto">
<span class="badge bg-info"><?php echo Text::sprintf('COM_PATCHTESTER_APPLIED_COMMIT_SHA', substr($item->sha, 0, 10)); ?></span>
<span class="badge btn-info"><?php echo Text::sprintf('COM_PATCHTESTER_APPLIED_COMMIT_SHA', substr($item->sha, 0, 10)); ?></span>
</div>
<?php
endif; ?>
Expand Down

0 comments on commit 8b9a3e8

Please sign in to comment.