inherit
193844
0
May 19, 2015 5:01:45 GMT -8
Sassy
I love you Shaggy!
2,372
May 2013
sassylisa14
|
Post by Sassy on Sept 7, 2024 3:09:45 GMT -8
|
|
inherit
257284
0
Nov 13, 2024 10:37:51 GMT -8
Eton Bones
70
December 2018
etonbones
|
Post by Eton Bones on Sept 7, 2024 8:25:36 GMT -8
The jQuery dialog uses an alpha channel on the background color it applies to get transparency background-color: rgba(0, 0, 0, 0.5) *the 0.5 is setting a transparency of 50%You can override this using the technique described in this thread. The issue, however, is you did not say what you want to do about it
Keep in mind that the solution given in the referenced thread will affect all jQuery dialogs. If you specifically want to target just the participated dialog, then that also would have to be made known...
|
|
inherit
193844
0
May 19, 2015 5:01:45 GMT -8
Sassy
I love you Shaggy!
2,372
May 2013
sassylisa14
|
Post by Sassy on Sept 7, 2024 16:16:08 GMT -8
I'm not a techie person ..... so most of your post was greek to me, LOL
But ...
I'll take option 3 if it doesn't mess up whatever dialogs you were talking about! You just need to tell me, in the simplest of terms, how to go about getting Option 3, LOL
Thanks for replying!
|
|
inherit
257284
0
Nov 13, 2024 10:37:51 GMT -8
Eton Bones
70
December 2018
etonbones
|
Post by Eton Bones on Sept 8, 2024 21:35:29 GMT -8
You just need to tell me, in the simplest of terms, how to go about getting Option 3, LOL Thanks for replying! There are several jQuery dialogs on your forum such as If you want to affect all of them the follow this direction:
Go to the CSS for your theme, scroll to the bottom and on a new line add this: .ui-dialog.ui-widget.ui-widget-content { background: @content_background; } Save and then see if that works better for you If you want to affect only the participated dialog then follow this direction Go to the CSS for your theme, scroll to the bottom and on a new line add this: .ui-dialog.ui-widget.ui-widget-content:has(#recent-threads) { background: @content_background; } Save and then see if that works better for you
|
|