Skip to content

Commit

Permalink
Merge pull request #33826 from dimagi/jls/repeat-group-button
Browse files Browse the repository at this point in the history
Moved repeat group button in web apps away from border
  • Loading branch information
orangejenny authored Dec 7, 2023
2 parents a7cfb00 + 72875d7 commit a804489
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions corehq/apps/cloudcare/templates/form_entry/templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,22 @@
'color': headerBackgroundColor() ? 'white' : '',
}">
<div data-bind="ifnot: collapsible">
<legend>
<span class="caption webapp-markdown-output"
data-bind="
html: ko.utils.unwrapObservable($data.caption_markdown) || caption(),
"></span>
<button class="btn btn-danger del pull-right" href="#" data-bind="
visible: isRepetition,
click: deleteRepeat
"><i class="fa fa-remove"></i></button>
</legend>
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<legend>
<span class="caption webapp-markdown-output"
data-bind="
html: ko.utils.unwrapObservable($data.caption_markdown) || caption(),
"></span>
<button class="btn btn-danger del pull-right" href="#" data-bind="
visible: isRepetition,
click: deleteRepeat
"><i class="fa fa-remove"></i></button>
</legend>
</div>
</div>
</div>
</div>
<div data-bind="if: collapsible">
<div class="collapsible-icon-container">
Expand Down

0 comments on commit a804489

Please sign in to comment.