The check-box styles for the Kendo themes are beautiful, but they are still static in size. As anyone who has tried can assert, it is very difficult to scale and resize check-boxes, since they don't behave the same way as most other controls. It would be absolutely wonderful if the Kendo suite had a way to do this, such as ... ``` <form class="k-form"> <div class="k-form-field"> <input type="checkbox" id="ch1" class="k-checkbox" checked /> <label class="k-checkbox-label" for="ch1">Checkbox 1</label> <input type="checkbox" id="ch2" class="k-checkbox" checked disabled /> <label class="k-checkbox-label" for="ch2">Checkbox 2</label> <input type="checkbox" id="ch3" class="k-checkbox"> <label class="k-checkbox-label" for="ch3" [scale]="2">Checkbox 3</label> </div> </form> ```