Verified Commit 763a9c55 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3127466 by komalkolekar, bnjmnm, kishor_kolekar, sd9121, lauriii,...

Issue #3127466 by komalkolekar, bnjmnm, kishor_kolekar, sd9121, lauriii, DeepaliJ, DyanneNova, kiran.kadam911, andrewmacpherson, rainbreaw, kostyashupenko: Required fields are not identifiable on Internet Explorer 11 high contrast
parent 109fe608
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -140,16 +140,11 @@ tr .form-item,
.form-item__label.form-required::after,
.fieldset__label.form-required::after {
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  margin-right: 0.3em;
  margin-left: 0.3em;
  content: "";
  vertical-align: super;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(../../images/core/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 0.4375rem 0.4375rem;
  margin-right: 0.15em;
  margin-left: 0.15em;
  content: "*";
  color: #d72222;
  font-size: 0.875rem;
}

/**
+5 −10
Original line number Diff line number Diff line
@@ -70,16 +70,11 @@ tr .form-item,
.form-item__label.form-required::after,
.fieldset__label.form-required::after {
  display: inline-block;
  width: var(--input--required-mark-size);
  height: var(--input--required-mark-size);
  margin-right: 0.3em;
  margin-left: 0.3em;
  content: "";
  vertical-align: super;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(../../images/core/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: var(--input--required-mark-size) var(--input--required-mark-size);
  margin-right: 0.15em;
  margin-left: 0.15em;
  content: "*";
  color: var(--color-maximumred);
  font-size: 0.875rem;
}

/**