Skip to content

Commit b74c149

Browse files
committed
Fixed styling of links on Joomla 5
Signed-off-by: Roland Dalmulder <[email protected]>
1 parent e211ef0 commit b74c149

File tree

1 file changed

+3
-3
lines changed
  • administrator/components/com_patchtester/PatchTester/View/Pulls/tmpl

1 file changed

+3
-3
lines changed

administrator/components/com_patchtester/PatchTester/View/Pulls/tmpl/default_items.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
</div>
4141
<div class="row">
4242
<div class="col-md-auto">
43-
<a class="badge btn-info" href="<?php echo $item->pull_url; ?>" target="_blank">
43+
<a class="badge btn-info bg-info" href="<?php echo $item->pull_url; ?>" target="_blank">
4444
<?php echo Text::_('COM_PATCHTESTER_VIEW_ON_GITHUB'); ?>
4545
</a>
4646
</div>
4747
<?php if ($this->trackerAlias) :
4848
?>
4949
<div class="col-md-auto">
50-
<a class="badge btn-info"
50+
<a class="badge btn-info bg-info"
5151
href="https://issues.joomla.org/tracker/<?php echo $this->trackerAlias; ?>/<?php echo $item->pull_id; ?>"
5252
target="_blank">
5353
<?php echo Text::_('COM_PATCHTESTER_VIEW_ON_JOOMLA_ISSUE_TRACKER'); ?>
@@ -58,7 +58,7 @@
5858
<?php if ($item->applied) :
5959
?>
6060
<div class="col-md-auto">
61-
<span class="badge btn-info"><?php echo Text::sprintf('COM_PATCHTESTER_APPLIED_COMMIT_SHA', substr($item->sha, 0, 10)); ?></span>
61+
<span class="badge btn-info bg-info"><?php echo Text::sprintf('COM_PATCHTESTER_APPLIED_COMMIT_SHA', substr($item->sha, 0, 10)); ?></span>
6262
</div>
6363
<?php
6464
endif; ?>

0 commit comments

Comments
 (0)