Most notable issues
- Metro skin does not show the correct (blue) color. For a timeline and status updates for the Lightweight mode follow https://feedback.telerik.com/Project/108/Feedback/Details/216601-wrong-titlebar-colors-in-metro-and-metrotouch-skins-in-lightweight-rendermode
- RTL mode does not order the buttons properly
Workarounds for both:
/*lightweight mode*/
.RadWindow_Metro div.rwTitleBar,
.RadWindow_MetroTouch div.rwTitleBar
{
background-color: #25a0da;
}
/* if you want all the borders blue */
div.RadWindow_Metro,
div.RadWindow_MetroTouch
{
border-color: #25a0da;
background-color: #25a0da;
}
.rwRtl .rwCommands li.rwListItem
{
float: right;
}
/* classic mode- metro skin color issue*/
div.RadWindow_Metro .rwTitleRow
{
background-color: #25a0da;
}