/*
 * djqiwi2's "actions" popup (jqxMenu({mode:'popup', ...}) in
 * djqiwi2/djqiwi/templates/djqwidgets/inclusions/list_inclusion.html and
 * friends) used to carry a hardcoded inline style="background:white" on
 * its container -- removed upstream in djqiwi2 because it also
 * permanently masked every other jqx theme (it beat any theme's CSS
 * class regardless of which theme was active). Without it, the popup
 * falls through to jqx.energyblue.css's own
 * .jqx-menu-vertical-energyblue{background:#e0e9f5} (a pale blue).
 *
 * Users are used to plain white here, so restoring it -- scoped to just
 * these containers by id, not the theme class itself, so anything else
 * that happens to use .jqx-menu-vertical-energyblue elsewhere keeps the
 * theme's actual color.
 */
div[id$="_actions_menu"],
div[id$="_bottom_actions_menu"] {
    background: #fff;
}
