Skip to content
Snippets Groups Projects
Commit be21de7f authored by Jess's avatar Jess
Browse files

Issue #3097540 by imganesh, boulaffasae, antoineh, sauravk, KondratievaS,...

Issue #3097540 by imganesh, boulaffasae, antoineh, sauravk, KondratievaS, atul4drupal, lauriii, Neetika K, Devipriya Rajamanickam: The 'M' of Machine name overlaps with the green border around text box

(cherry picked from commit aaed374b)
parent f1f335a7
No related branches found
No related tags found
9 merge requests!1445Issue #2920039: Views' User Name exposed group filter validation,!1298Issue #3240993: Let layout builder render inline block translations,!774Issue #3174569: Example node template file name is incorrect,!497Issue #2463967: Use .user.ini file for PHP settings,!433Resolve #3163663 "Too many open files",!233Resolve #2693787 "Taxonomy term name",!133Resolve #2666286 "Clean up menuui",!112Resolve #3187004 "Drupaldatetime serialization issue",!53Resolve #3181870: Correct typo "the the" in "core/classList" deprecation message.
......@@ -185,6 +185,19 @@ tr .form-item,
color: #82828c;
}
/* Add some spacing so that the focus ring and suffix don't overlap. */
@media screen and (min-width: 601px) {
.form-item__suffix {
margin-left: 0.5rem; /* LTR */
}
[dir="rtl"] .form-item__suffix {
margin-right: 0.5rem;
margin-left: 0;
}
}
/**
* Form actions.
*/
......
......@@ -114,6 +114,18 @@ tr .form-item,
color: var(--input--disabled-fg-color);
}
/* Add some spacing so that the focus ring and suffix don't overlap. */
@media screen and (min-width: 601px) {
.form-item__suffix {
margin-left: var(--space-xs); /* LTR */
}
[dir="rtl"] .form-item__suffix {
margin-right: var(--space-xs);
margin-left: 0;
}
}
/**
* Form actions.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment