|
.e-custom.e-checkbox-wrapper .e-frame {
/* To change the size of the Checkbox*/
height: 32px;
line-height: 22px;
width: 32px;
}
.e-custom.e-checkbox-wrapper .e-check {
/* To change the size of the tick icon*/
font-size: 22px;
}
.e-custom.e-checkbox-wrapper .e-label {
/* To customize label size */
font-size: 22px;
} |
.e-customCheckBox.e-checkbox-wrapper .e-frame {
/* To change the size of the Checkbox*/
height: 32px;
line-height: 22px;
width: 32px;
}
.e-customCheckBox.e-checkbox-wrapper .e-check {
/* To change the size of the tick icon*/
font-size: 22px;
}
.e-customCheckBox.e-checkbox-wrapper .e-label {
/* To customize label size */
font-size: 17px;
}
|
#Container {
min-height: 100px;
}
|
|
<ejs-checkbox #checkbox [checked]="true"></ejs-checkbox>
<div #container id="Container" class="root-container"></div>
<ejs-dialog id="dialog" #ejDialog
content="JavaScript is a dynamic computer programming language. It is lightweight and most commonly used "
[target]="Container" width="250px">
</ejs-dialog>
|