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

Question

Question

Laserfiche 11 Forms - Checkbox printing

asked on April 21, 2023

I have been looking for an answer and haven't found it yet. When a user submits a form and also when it is stored into Laserfiche our "checkboxes"  are printing very faint. So it is hard to see what they actually checked. Has anyone found a way to make them print "darker"? 

checkbox.PNG
checkbox.PNG (82.1 KB)
0 0

Replies

replied on April 26, 2023

Hi Suzanne
I don't think there is a good simple way to style checkboxes. Because they are disabled checkbox and controlled by browsers. Use CSS can create "new checkbox" and override default check but it's somewhat complicated and I think way overkill for your need.

So, what I can think of is to apply some kind of border, so it doesn't look too faint. For example, 

CSS code: 

.boxShadow input[type='checkbox']:disabled:checked {
   box-shadow: inset 0 0 0 1px #555;
}

And add CSS class for check box field on top:

Hope this can help.

 

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

Sign in to reply to this post.