How to style jQueryUI dialog header with specific ID?
-
I want to change style of TitleBar in jQueryUI Dialog header, for example I want green background - and it should be applied to only one dialog specified by ID. That's why I wrote something like this: #sendInviteRequestDialog .ui-dialog .ui-widget-header{ background-color: green !important; } But unfortunately it didn't work. I tried something like this: #sendInviteRequestDialog > .ui-dialog > .ui-widget-header{ background-color: green !important; } But it also didn't resolve my problem. What am I doing wrong? Thank you in advance.
-
Answer:
The dialog markup (the overlay shadow, borders, background, title bar, close button, drag handles, etc) is added outside the div on which you call .dialog(). So #sendInviteRequestDialog .ui-dialog .ui-widget-header will not work as expected. To stylize a specific dialog, use the http://api.jqueryui.com/dialog/#option-dialogClass option: The specified class name(s) will be added to the dialog, for additional theming. Example code: $("#sendInviteRequestDialog").dialog({ modal: true, dialogClass: "custom-dialog-1" }); Generated markup: <div class="ui-dialog ui-widget ui-widget-content ui-corner-all custom-dialog-1 ui-draggable ui-resizable" tabindex="-1" role="dialog" aria-labelledby="ui-id-1" style="outline: 0px; z-index: 1002; position: absolute; height: auto; width: 300px; top: 29.5px; left: 125.5px; display: block;"> <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"><span id="ui-id-1" class="ui-dialog-title">Title</span><a href="#" class="ui-dialog-titlebar-close ui-corner-all" role="button"><span class="ui-icon ui-icon-closethick">close</span></a></div> <div id="sendInviteRequestDialog" class="ui-dialog-content ui-widget-content" scrolltop="0" scrollleft="0" style="width: auto; min-height: 82px; height: auto;">Content</div> <div class="ui-resizable-handle ui-resizable-n" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-e" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-s" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-w" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se ui-icon-grip-diagonal-se" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-sw" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-ne" style="z-index: 1000;"></div> <div class="ui-resizable-handle ui-resizable-nw" style="z-index: 1000;"></div> </div> Example CSS: .custom-dialog-1 .ui-widget-header { background: green; } http://jsfiddle.net/salman/Sw5fn/ Note that I have used background shortcut instead of background-color; this resets all background properties including background image. The title bar's default background color in in fact an image.
Pneumokok at Stack Overflow Visit the source
Related Q & A:
- How To Style Shy Scene Hair?Best solution by Yahoo! Answers
- How to open the dialog box dynamically in iOS?Best solution by Stack Overflow
- How to do android dialog flip animation?Best solution by developer.android.com
- How to add a column header to the dynamic table?Best solution by stackoverflow.com
- How to repeat Crystal Report Header on each page?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.