Search code examples
asp.netasp.net-mvcuser-interfacedevextremedevexpress-mvc

Can I scale down the widgets in DevExtreme web application?


In a DevExtreme web application all the editor widgets are relatively too big (e.g. dxCheckbox).

Can I scale down the widgets?


Solution

  • For now all you can do is just use css to scale down widget size.

    This fiddle shows how to do it for checkbox http://jsfiddle.net/tabalinas/uhamqm9k/

    Use following styles

    .dx-widget {
        font-size: 12px;    
    }
    
    .dx-checkbox-icon {
        width: 12px;
        height: 12px;
    }
    

    But I heard about plans on compact theme for webapps.