Skip to content

Commit

Permalink
Add padding to the discussions OP edit box
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Sep 25, 2017
1 parent 4632b8a commit 3d1070a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/templates/discussioncomments.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ <h4 style="color: {{ statusMessageColour }};">&nbsp;{{ statusMessage }}</h4>
</div>
<div>Opened <span title="{{ Disc.creation_date | date : 'medium' }}" style="color: grey;">{{ getTimePeriodTxt(Disc.creation_date, true) }}</span> by <a class="blackLink" href="/{{ Disc.creator }}">{{ Disc.creator }}</a></div>
</div>
<div style="border: 1px solid #CCC; border-radius: 0px 0px 7px 7px;">
<div style="border: 1px solid #CCC; padding: 10px; border-radius: 0px 0px 7px 7px;">
<div ng-show="editDisc === true" style="text-align: center;">
<uib-tabset active="activeDisc">
<uib-tab index="0">
Expand All @@ -125,7 +125,7 @@ <h4 style="color: {{ statusMessageColour }};">&nbsp;{{ statusMessage }}</h4>
<input type="submit" class="btn btn-default" value="Cancel" style="margin-top: 10px;" ng-click="editDiscussion()">
<input type="submit" class="btn btn-success" value="Save" style="margin-top: 10px;" ng-click="updateDiscussion()">
</div>
<div ng-hide="editDisc === true" class="rendered" ng-bind-html="Disc.body_rendered"></div>
<div ng-hide="editDisc === true" class="rendered" ng-bind-html="Disc.body_rendered" style="padding: 0;"></div>
</div>
</td>
</tr>
Expand Down

0 comments on commit 3d1070a

Please sign in to comment.