angularjs - Angular dialogue box not resizing correctly -


folks,

so using angular dialogue box, however, setting custom size dialogue box ruins format inside box.

i have created plunkr this. http://plnkr.co/edit/yxf1knmqhado3im8dfby

if @ "save" , "cancel" buttons, appear somewhere near center of page though part of modal-footer.

does know how resolve this.

thanks in advance

they appearing right because modal-footer has css property set text-align: right. flow off of plunker because model-body being set 800px in code here: modal.css("width",'800px');.

you can add style override if want:

.modal-footer.left {   text-align:left; } 

updated plunker

hope helps.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -