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

Question

Question

12 save to repository css

asked on January 16

How to make my text and inputs NOT in a read only state when saving to the repo in Forms version 12? I can't find anything about this. Case in point, I have been asked to make the checkboxes more visible on the the saved for for auditors.

Saved version:


Form version:

0 0

Answer

SELECTED ANSWER
replied on January 16

There is not a built-in setting that I know of in 12 do darken the fields.  My understanding is they become disabled when saving to the repository.  I used this CSS and it has helped with the same issue: 

input[disabled][type="radio"]:checked::before {
	content: "\25C9";
  	position: relative;
  	z-index: 100;
  	top: -3px;
  	left: .5px;
}

input[type="radio"]:checked + .option-label, input[type="checkbox"]:checked + .option-label {
  font-weight: 600;
}

input[disabled][type="checkbox"]:checked::before {
	content: "\2611";
  	position: relative;
  	background: white;
  	font-size: 17px;
  	top: -7px;
  	left: .5px;
  	font-weight: 600;
}

 

2 0
replied on January 17

hey that did the trick! thanks so much!!

0 0
replied on January 17

Glad it helped!

0 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.