Merge pull request #351 from N6REJ/340

fixes hover issues
This commit is contained in:
Roland Dalmulder 2022-10-15 15:55:19 +02:00 committed by GitHub
commit 8b9a3e8865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -40,14 +40,14 @@ foreach ($this->items as $i => $item) :
</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'); ?>
@ -58,7 +58,7 @@ foreach ($this->items as $i => $item) :
<?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; ?>