[SOLVED] Theme Graphite-3 Issue

Answered
0
0

Hi

I’ve downloaded last version of Graphite-3 theme.

In Theme Builder I’ve note that the checkbox checked state not show any icon. The style configuration seem right. I’ts a bug?
Thanks.

  • You must to post comments
Best Answer
0
0

Thanks, Mark.

The theme is fixed in GitHub and will be included in the next Wisej release.

Best regards
Frank

  • You must to post comments
0
0

Thanks Angelo,

logged as issue #1834. We´ll inform you when it´s fixed.

Best regards
Frank

  • You must to post comments
0
0

I think I figured it out. The checked text-color for icon-dark is iconLight I think it should probably be iconDark

“icon-dark”:
{
“states”:
{
“default”:
{
“properties”:
{
“width”: 18,
“height”: 18,
“textColor”: “iconDark”
}
},
“hovered”:
{
“properties”:
{
“textColor”: “#5B5B5B”
}
},
“selected”:
{
“properties”:
{
“textColor”: “highlightText”
}
},
“pressed”:
{
“properties”:
{
“textColor”: “iconLight”
}
},
“checked”:
{
“properties”:
{
“textColor”: “iconLight”
}
}
}
},

Should be

“icon-dark”:
{
“states”:
{
“default”:
{
“properties”:
{
“width”: 18,
“height”: 18,
“textColor”: “iconDark”
}
},
“hovered”:
{
“properties”:
{
“textColor”: “#5B5B5B”
}
},
“selected”:
{
“properties”:
{
“textColor”: “highlightText”
}
},
“pressed”:
{
“properties”:
{
“textColor”: “iconLight”
}
},
“checked”:
{
“properties”:
{
“textColor”: “iconDark”
}
}
}
},

  • You must to post comments
Showing 3 results
Your Answer

Please first to submit.