Toni Michel Caubet
Toni Michel Caubet

Reputation: 20163

Change jquery-ui modal window color/image effect/overlay

Is there a way to change the dark background color that jquery-ui adds to the modal div?

EDIT:

Found it, only need to edit the background color and the opacity of:

.ui-widget-overlay{

}

Upvotes: 5

Views: 6290

Answers (2)

Toni Michel Caubet
Toni Michel Caubet

Reputation: 20163

Edit

.ui-widget-overlay{
     background:red;
}

Upvotes: 5

Tushar Ahirrao
Tushar Ahirrao

Reputation: 13115

Yes you can do this by changing default css provided in

Here you can change color :

  .ui-widget-content{
      border: 1px solid #AAAAAA;
  }

Just go to the jquery.ui.theme.css file you will find this css

Upvotes: 0

Related Questions