Skip to content
Snippets Groups Projects
Verified Commit beee0426 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

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

Issue #3097540 by imganesh, boulaffasae, antoineh, sauravk, KondratievaS, atul4drupal, Neetika K, Devipriya Rajamanickam: The 'M' of Machine name overlaps with the green border around text box
parent 045a00c1
No related branches found
No related tags found
8 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards,!16Draft: Resolve #2081585 "History storage",!13Resolve #2903456
...@@ -185,6 +185,19 @@ tr .form-item, ...@@ -185,6 +185,19 @@ tr .form-item,
color: #82828c; 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. * Form actions.
*/ */
......
...@@ -114,6 +114,18 @@ tr .form-item, ...@@ -114,6 +114,18 @@ tr .form-item,
color: var(--input--disabled-fg-color); 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. * Form actions.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment