I am looking for a way to target a specific window (in this case a modal pop up that I don't want any buttons on -- it is modal, after all).
I know I can do something like this:
div .k-window-action
{
visibility: hidden;
}
but that gets all <div>s and I really don't want to do that.
The div in question:
<div id="ui-loadingPopUp">test!</div>
I've tried things like "div#loadingPopUp .k-window-action" but that doesn't work either.
I know I can do something like this:
div .k-window-action
{
visibility: hidden;
}
but that gets all <div>s and I really don't want to do that.
The div in question:
<div id="ui-loadingPopUp">test!</div>
I've tried things like "div#loadingPopUp .k-window-action" but that doesn't work either.