How can I change the checkbox size to be larger it stays the same size no matter how big the font?
Thanks,
Tim Larson
Hi Tim,
The size of the icon doesn’t change with the font, it’s in the theme. Add a theme mixin file to the /Themes folder (I use Application.mixin.theme) where you can add all the theme changes your app needs without modifying the theme files. This is to change the size of the checkbox icon and override the current theme’s settings.
{
“appearances”: {
“checkbox”: {
“inherit”: “checkbox”,
“components”: {
“icon”: {
“inherit”: “icon-dark”,
“states”: {
“default”: {
“properties”: {
“width”: 32,
“height”: 32
}
}
}
}
}
}
}
}
I also still owe you the same for the combobox. Will reply to the other post shortly.
/Luca
Please login first to submit.