Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #72 from phpList/mantis-19029
fix mantis #0019029: Design issues on detail of a bounce
  • Loading branch information
Sam Tuke committed Sep 9, 2018
2 parents 6feb541 + 9b4e9c4 commit 1857964
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
11 changes: 5 additions & 6 deletions js/dist/phpList_ui_bootlist.js
Expand Up @@ -2065,12 +2065,11 @@ var applyCustomFormatting = function() {
$('body.list .rows .listingelement span.view').css({ 'width':'auto','float':'none','margin-left':'10px'});

/*fix Bounce Details (?page=bounce&id=xx) */
$('body.bounce .content div.content').css({'min-height':'60px'}).addClass('well').removeClass('content');
$('body.bounce .content div').not('.fleft,.fleft div').addClass('col-sm-12');
$('body.bounce .content div.fleft div.well').css({'margin-left':'-15px','margin-right':'-15px'});
$('body.bounce .content div.fleft:first-child').addClass('col-sm-1').removeClass('fleft');
$('body.bounce .content div.fleft:nth-child(2)').addClass('col-sm-4 col-sm-offset-1').removeClass('fleft');
$('body.bounce .content div.fleft:nth-child(3)').addClass('col-sm-5 col-sm-offset-1').removeClass('fleft');
$('body.bounce .content div.content').css({'min-height':'45px','padding':'10px 20px 10px 10px'}).addClass('well').removeClass('content');
$('body.bounce .content div.fleft:first-child').css({'margin-left':'-15px','margin-right':'15px'}).addClass('col-sm-1').removeClass('fleft');
$('body.bounce .content div.fleft:nth-child(2)').css({'margin-left':'-15px','margin-right':' 15px'}).addClass('col-sm-5').removeClass('fleft');
$('body.bounce .content div.fleft:nth-child(3)').css({'margin-left':'-15px'}).addClass('col-sm-6').removeClass('fleft');
$('body.bounce .content div.clear').addClass('clearfix');

/* subscribe page */
$('body.fixed .required').addClass('text-danger');
Expand Down

0 comments on commit 1857964

Please sign in to comment.