Skip to content

Commit 2702523

Browse files
fix: remove deprecated -xs btn suffixes
The -xs suffixes were removed in bootstrap v4
1 parent 2588017 commit 2702523

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

html-templates/people/people.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<div class="row">
2020
<div class="col-sm-4 col-md-3">
2121
<div class="tags-ct">
22-
<div class="btn-group btn-group-justified btn-group-xs margin-bottom" role="group">
22+
<div class="btn-group btn-group-justified btn-group-sm margin-bottom" role="group">
2323
<a href="#members-by-tech" class="tagFilter active btn btn-secondary" role="button" data-group="byTech">{_ "skills"}</a>
2424
<a href="#members-by-project" class="tagFilter btn btn-secondary" role="button" data-group="byTopic">{_ "topics"}</a>
2525
</div>

html-templates/projects/projects.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<div class="row">
2727
<div class="col-sm-4 col-md-3 tags-ct">
28-
<div class="btn-group btn-group-justified btn-group-xs margin-bottom" role="group">
28+
<div class="btn-group btn-group-justified btn-group-sm margin-bottom" role="group">
2929
<a href="#projects-by-topic" class="active btn btn-secondary" role="button" data-group="byTopic">{_ "topics"}</a>
3030
<a href="#projects-by-tech" class="btn btn-secondary" role="button" data-group="byTech">{_ "tech"}</a>
3131
<a href="#projects-by-event" class="btn btn-secondary" role="button" data-group="byEvent">{_ "events"}</a>

html-templates/subtemplates/buzz.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
</div>
3030
<footer class="post-footer card-footer">
3131
{if Laddr\ProjectBuzzRequestHandler::checkWriteAccess($Buzz)}
32-
<div class="btn-group pull-right">
33-
<a href="{$Buzz->getURL()}/edit" class="btn btn-sm btn-secondary">{icon "pencil"} <span class="sr-only">{_ Edit}</span></a>
34-
<a href="{$Buzz->getURL()}/delete" class="btn btn-sm btn-danger">{icon "trash"} <span class="sr-only">{_ Delete}</span></a>
32+
<div class="btn-group-sm pull-right">
33+
<a href="{$Buzz->getURL()}/edit" class="btn btn-secondary">{icon "pencil"} <span class="sr-only">{_ Edit}</span></a>
34+
<a href="{$Buzz->getURL()}/delete" class="btn btn-danger">{icon "trash"} <span class="sr-only">{_ Delete}</span></a>
3535
</div>
3636
{/if}
3737

html-templates/subtemplates/updates.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
</div>
2323
<footer class="post-footer card-footer clearfix">
2424
{if Laddr\ProjectUpdatesRequestHandler::checkWriteAccess($Update)}
25-
<div class="btn-group pull-right">
26-
<a href="{$Update->getURL()}/edit" class="btn btn-sm btn-secondary">{icon "pencil"} <span class="sr-only">{_ Edit}</span></a>
27-
<a href="{$Update->getURL()}/delete" class="btn btn-sm btn-danger">{icon "trash"} <span class="sr-only">{_ Delete}</span></a>
25+
<div class="btn-group-sm pull-right">
26+
<a href="{$Update->getURL()}/edit" class="btn btn-secondary">{icon "pencil"} <span class="sr-only">{_ Edit}</span></a>
27+
<a href="{$Update->getURL()}/delete" class="btn btn-danger">{icon "trash"} <span class="sr-only">{_ Delete}</span></a>
2828
</div>
2929
{/if}
3030

0 commit comments

Comments
 (0)