In many areas in the backend admin area for CFv8 and ChronoMyadmin have white rows with very light text colors.
This makes it impossible or nearly impossible to see what is being clicked on.
The css is now call "nui"
I spent hours trying to find out where the "nui" css files are located. The inspector says "inline."
If I add/change an element in the inspector and make the background color for ".nui" it fixes the problem and I can see perfectly.
I added background-color blue into the inspector in the admin area for ChronoMyAdmin and it is all good.
.nui, .nui *, .nui ::after, .nui ::before, .nui::after, .nui::before {
background-color: blue;
}
I added this element into the inspector in the admin area for CFV8 form and it fixes the problem.
.nui {
color: white;
background-color: blue;
}
Is there an area in the admin files under pubic_html where the .nui can be added/modified?
Thanks in advance.
This makes it impossible or nearly impossible to see what is being clicked on.
The css is now call "nui"
I spent hours trying to find out where the "nui" css files are located. The inspector says "inline."
If I add/change an element in the inspector and make the background color for ".nui" it fixes the problem and I can see perfectly.
I added background-color blue into the inspector in the admin area for ChronoMyAdmin and it is all good.
.nui, .nui *, .nui ::after, .nui ::before, .nui::after, .nui::before {
background-color: blue;
}
I added this element into the inspector in the admin area for CFV8 form and it fixes the problem.
.nui {
color: white;
background-color: blue;
}
Is there an area in the admin files under pubic_html where the .nui can be added/modified?
Thanks in advance.