You are viewing limited content. For full access, please sign in.

Question

Question

Need CSS to darken/bold radio buttons and checkboxes in New Form Designer

asked on December 3

Hello Laserfiche Community!

I have some great CSS that I use in the CLASSIC Form Designer that nicely darkens and bolds Radio Button and Checkbox selections, make the form selections much easier to read after it gets saved.

However, I cannot figure out how to do this in the NEW Form Designer. Anyone have any CSS I can try?

Here's what I use in the Classic Form Designer:

/*************************** PDF STYLING ***************************/
input[type="checkbox"][readonly]:checked + label,
input[type="radio"][readonly]:checked + label {  
  font-weight: bold; 
  color: #000;
}
/*************************** END PDF STYLING ***************************/

 

 

Here's a snippet of the Form I'm trying to implement this kind of CSS in:

0 0

Answer

SELECTED ANSWER
replied on December 3 Show version history

See if this is what you are looking for :) 

.fl-component.checkbox input[type=checkbox][disabled]:checked + label{
  font-weight: 800 !important;  
}

.fl-component.radio input[type=radio][disabled]:checked + label{
  font-weight: 800 !important;  
}

You will of course want to add in the color and your preferred value for the font-weight. 

1 0
replied on December 3

YES that worked! Thank you so much!!

1 0
replied on December 3

I'm glad it worked and you are welcome! 

If you would mark it as the answer I would appreciate it :) 

1 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.