There is a "Focused" class you can use for the menu items. You have to use it for the "label" and the button itself. Also note that you have to include the normal and dropdown button.
Menu button active:
.tundra .dijitToolbar .dijitDropDownButtonFocused,
.tundra .dijitToolbar .dijitButtonFocused {
background: red;
}
For the menu label it's the following css:
.tundra .dijitToolbar .dijitDropDownButtonFocused .dijitButtonText,
.tundra .dijitToolbar .dijitButtonFocused .dijitButtonText {
color: #000;
}
EDIT:
For a dropdown menu item you can use the following css:
.tundra .dijitMenuItem {
color: #000;
}
.tundra .dijitMenuPassive .dijitMenuItemHover,
.tundra .dijitMenuItemSelected {
color: #fff;
background: red;
}
There is a "Focused" class you can use for the menu items. You have to use it for the "label" and the button itself. Also note that you have to include the normal and dropdown button.
Menu button active:
.tundra .dijitToolbar .dijitDropDownButtonFocused,
.tundra .dijitToolbar .dijitButtonFocused {
background: red;
}
For the menu label it's the following css:
.tundra .dijitToolbar .dijitDropDownButtonFocused .dijitButtonText,
.tundra .dijitToolbar .dijitButtonFocused .dijitButtonText {
color: #red;
}
Hope this helps.