The red asterisk indicating that form fields are required, is not showing up in Drupal 8 Webforms. Since it is not a Webform-specific issue, this should be addressed here.

Comments

Dutspal created an issue. See original summary.

zymphonies-dev’s picture

Status: Active » Fixed

Updated changes in 8.x-1.1

zymphonies-dev’s picture

Status: Fixed » Closed (fixed)
tzsl’s picture

I had the same problem in webform and a selfmade subtheme of Mayo. (drupal 8.6.1)
I solved it by adding in the style.css of my subtheme

.form-required::after {
content: '';
vertical-align: super;
display: inline-block;
background-image: url(/core/misc/icons/ee0000/required.svg);
background-repeat: no-repeat;
background-size: 6px 6px;
width: 6px;
height: 6px;
margin: 0 0.3em;
}