Skip to content

Commit 0b35889

Browse files
committed
Remove btn-link class from module cog
1 parent 0fb14b1 commit 0b35889

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

html/layouts/chromes/accordion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<?php if ($canEdit || $canChange) : ?>
5151
<?php $dropdownPosition = Factory::getLanguage()->isRTL() ? 'left' : 'right'; ?>
5252
<div class="module-actions dropdown">
53-
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-link" id="dropdownMenuButton-<?php echo $id; ?>">
53+
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
5454
<span class="fas fa-cog" aria-hidden="true"></span>
5555
<span class="sr-only"><?php echo Text::_('JACTION_EDIT') . ' ' . $module->title; ?></span>
5656
</button>

html/layouts/chromes/body.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<?php if ($canEdit || $canChange) : ?>
3939
<?php $dropdownPosition = Factory::getLanguage()->isRTL() ? 'left' : 'right'; ?>
4040
<div class="module-actions dropdown">
41-
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-link" id="dropdownMenuButton-<?php echo $id; ?>">
41+
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
4242
<span class="fa fa-cog" aria-hidden="true"></span>
4343
<span class="sr-only"><?php echo Text::_('JACTION_EDIT') . ' ' . $module->title; ?></span>
4444
</button>

html/layouts/chromes/well.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<?php if ($canEdit || $canChange) : ?>
5151
<?php $dropdownPosition = Factory::getLanguage()->isRTL() ? 'left' : 'right'; ?>
5252
<div class="module-actions dropdown">
53-
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn btn-link" id="dropdownMenuButton-<?php echo $id; ?>">
53+
<button type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="btn" id="dropdownMenuButton-<?php echo $id; ?>">
5454
<span class="fa fa-cog" aria-hidden="true"></span>
5555
<span class="sr-only"><?php echo Text::_('JACTION_EDIT') . ' ' . $module->title; ?></span>
5656
</button>

0 commit comments

Comments
 (0)