Skip to content

Commit

Permalink
Fixes #9400: On accept node page, [Accept] button should be on right.…
Browse files Browse the repository at this point in the history
… Or green. Or both.
  • Loading branch information
RaphaelGauthier committed Oct 18, 2016
1 parent 042a70f commit ce91c0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,12 +375,12 @@ class AcceptNode extends Loggable {
SHtml.ajaxButton(
"Accept"
, { () => showConfirmPopup(acceptTemplate, "confirmPopup") }
) % ("class", "btn btn-default")
) % ("class", "btn btn-success pull-right")
, "refuse" ->
SHtml.ajaxButton(
"Refuse"
, { () => showConfirmPopup(refuseTemplate, "refusePopup" ) }
) % ("class", "pull-right btn btn-danger")
) % ("class", "btn btn-danger")
, "errors" -> (errors match {
case None => NodeSeq.Empty
case Some(x) => <div>x</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
<div class="tw-bs">
<div class="margins tw-bs">
<div style="float:left" >
<lift:authz role="group_write"><group:clone></group:clone></lift:authz>
<lift:authz role="group_write"><group:delete></group:delete></lift:authz>
<lift:authz role="group_write"><group:clone></group:clone></lift:authz>
</div>
<div style="float:right" >
<group:save></group:save>
Expand Down

0 comments on commit ce91c0f

Please sign in to comment.