-
A suggestion if I may, have the fields have an ID or className, even if it's just a automatically generated system at random.
I noticed this is done for the Accounts Management page, where each checkbox has the value set to the account ID number, such as the first account having the value of "1" which CAN be selected in CSS via using the attribute targeting method.
The fields displayed in the info section could for example, of the ID or className be referenced by its corresponding field name in the table within the database.
Example:
<div class="character_lore bx-form-row-view-wrapper bx-form-row-view-wrapper-textarea bx-def-padding-sec-top"> <div class="bx-form-row-view-caption"> <span class="bx-form-row-vc-text">Character Lore:</span> </div> <div class="bx-form-row-view-value bx-def-vanilla-html max-w-none"><p>My amazing lore and stuff. :D</p></div> </div>
https://www.w3schools.com/cssref/sel_attribute_value.php
input[value="1"] { color:
#F90; }