mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Minor: Message overflow fixed using .css
changed the meathod used to fix the message overflow to .css instead of .attr to prevent other styles from being overwritten
This commit is contained in:
parent
4cf470baa0
commit
8586b1d381
@ -91,7 +91,7 @@
|
||||
minInnerWidth: 620,
|
||||
onadd: function() {
|
||||
// Adding margin to prevent post options from overlaping message box
|
||||
$('#Form_EditForm_error ').attr('style', 'margin-right: 56px');
|
||||
$('#Form_EditForm_error ').css('margin-right', '56px');
|
||||
|
||||
this._super();
|
||||
this.updateLayout();
|
||||
|
Loading…
Reference in New Issue
Block a user