Skip to content

Commit

Permalink
Fixed styling of links on Joomla 5
Browse files Browse the repository at this point in the history
Signed-off-by: Roland Dalmulder <[email protected]>
  • Loading branch information
roland-d committed Aug 3, 2023
1 parent e211ef0 commit b74c149
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 btn-info" href="<?php echo $item->pull_url; ?>" target="_blank">
<a class="badge btn-info bg-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 btn-info"
<a class="badge btn-info bg-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 btn-info"><?php echo Text::sprintf('COM_PATCHTESTER_APPLIED_COMMIT_SHA', substr($item->sha, 0, 10)); ?></span>
<span class="badge btn-info bg-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 b74c149

Please sign in to comment.