When I load the dialog the background gets a little bit grey. I would like to make it darker, but I cannot find a property that is responsible for that. How can I achieve this?
That is in this css element:
.ui-widget-overlay {
background: #AAA url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
opacity: .30;
filter: Alpha(Opacity=30);
}
it is on line 294 of: jquery-ui-1.8.11.custom.css
Add this CSS to your stylesheet:
.ui-widget-overlay
{
opacity: .50 !important; /* Make sure to change both of these, as IE only sees the second one */
filter: Alpha(Opacity=50) !important;
background: rgb(50, 50, 50) !important; /* This will make it darker */
}
Easiest way is to use the themeroller.
Like @spinlock I have the strip that run horizontally :
To remove the strip and use a custom background color you can do like this on the open event :
open : function(event, ui){
$("body").css({
overflow: 'hidden'
});
$(".ui-widget-overlay").css({
background:"rgb(0, 0, 0)",
opacity: ".50 !important",
filter: "Alpha(Opacity=50)",
});
},
beforeClose: function(event, ui) {
$("body").css({ overflow: 'inherit' })
}
What actually worked for me :
//in dialog setting code
open: function(event, ui) {
$('.ui-widget-overlay').css({ opacity: '.5' });
},
I will not suggest to setup opacity for a dialog directly in CSS, as it will affect any dialog open across your website, which may not be a desired result.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With