Skip to main content
Participant
January 31, 2018
Question

Unable to see checkboxes from topcoat theme

  • January 31, 2018
  • 2 replies
  • 594 views

I isolated the problem and figured that it was the topcoat theme that causes this problem in UI but I could use help to find how to avoid this.

Refer to this issue:

https://forums.adobe.com/thread/2275058

4 other ppl have this issue

Thanks

This topic has been closed for replies.

2 replies

sergey_ak
Participant
February 11, 2018

What sdk version and target apllication are you using? This problem may be related to incompatibility of modern css templates, with old CEF versions, that illustrator use. You can try to use some css autoprefixer loader, if you are using module bunling system in your project, or just try to prefix your topcoat css files.

vsathyaAuthor
Participant
January 31, 2018

I found out that you have to use the topcoat html code for a checkbox or any element that doesn't show up.

i.e.

HTML

<label class="topcoat-checkbox">
<input type="checkbox">
<div class="topcoat-checkbox__checkmark">
</div> Default
</label>
<br>
<br>
<label class="topcoat-checkbox">
<input type="checkbox" disabled>
<div class="topcoat-checkbox__checkmark">
</div> Disabled
</label>

still checkmarks are not showing up when i click the enables one