I am using jquery-ui dialog in my application. Now I want to configure the signin / sinup dialog, i.e. jquery-ui dialog. without settings, the dialogs look like this: 
but when I made the following changes on the login.jsp page, which is also in style, it changes all the application dialogs that I donβt want, but only the signin / signup dialog. CSS code:
.ui-widget-header { background: #343434 !important; border: none } .ui-dialog-titlebar-close{ background: #1C1C1C !important; } .ui-dialog { background: #343434 !important; border: thin 1px; }
and js code for this dialog box (id = "signinDialog"):
$(document).ready(function() { $("#signinDialog").dialog({ width : 600, resizable : false, modal : true, autoOpen : false, position : ['top', 157] }); function openLoginPopup() { $("#signinDialog").dialog("open"); }
after these changes, I get the signin / signup dialog the way I want, but the problem is that this is a jquery-ui dialog css change for the whole application and looks like this:

I got stuck in this issue in the morning and tried many times to decide how, but everything fell. Atlast, I have to ask about this.
I want all dialogs to remain the same except for the signin / signup dialog after configuration.
source share