Reputation: 9332
I have a jQuery dialog where buttons are separated from content by a solid line. Is it possible to remove this line? I didn't find a way to do this.
Thanks.
Upvotes: 3
Views: 4161
Reputation: 10981
Caught with Firebug
:
.ui-dialog .ui-dialog-buttonpane { border-width: 0 !important; }
Upvotes: 13
Reputation: 5895
Find the class .ui-widget-content
and remove the border: 1px solid #AAAAAA;
. but doing this will remove the border from the entire class and it may effect on other elements where class .ui-widget-content
is applying so it is better to remove the class from the element from where you want to remove the border itself and write custom css rules as per your requirement.
Upvotes: 0
Reputation: 160833
Try the css:
.ui-dialog .ui-dialog-buttonpane {
border-width: 0;
}
Upvotes: 1