I am developing a map open api.
By the way dojo`s 'claro' theme overwrites the other system`s css.
so.. I had to change the code as follows:
<before>
require([ "dojo/domReady!" ], function() {
dojo.addClass(document.body, "claro");
});
<after>
dojo.addClass(my widget.domNode, "claro");
I added the style of each widget domNode.
but .. dijit popup and combobox css not changed.
Is it possible they must be used to add style to the body?




How can I use dojo 'claro' css not cover the other systems?