Fixed
Project:
Event Horizon
Version:
2.0.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Apr 2026 at 17:05 UTC
Updated:
4 Jul 2026 at 15:45 UTC
Jump to comment: Most recent
While required fields are triggering errors, there are no indicators.
Add SCSS with the .form-required class to indicate after field.
.form-required::after {
content: "*";
color: var(--color--red);
}
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
markie commentedAdded class to the utility.sass and created MR.
Comment #4
weekbeforenextThis didn't resolve the issue on the Drupal Camp Asheville site. I added the following override CSS:
The existing CSS/SCSS uses a background image SVG that has a white fill color.
Comment #5
mandclu commentedComment #8
mandclu commentedThe problem with setting the content is that is will be read by screen readers. I decided to take a different approach, using the svg icon but using it as a mask, so CSS can handle the color.