Skip to content
Snippets Groups Projects
Verified Commit c1f77264 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #2990766 by camilledavis, Gauravvvv, mgifford: Location of "Skip to...

Issue #2990766 by camilledavis, Gauravvvv, mgifford: Location of "Skip to Main" link below admin toolbar in Claro is problematic for screen magnifier users

(cherry picked from commit 5e0d1efa)
parent dd0ee83f
No related branches found
No related tags found
5 merge requests!11769Issue #3517987: Add option to contextual filters to encode slashes in query parameter.,!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...,!8325Update file Sort.php,!8095Expose document root on install
Pipeline #167947 canceled
Pipeline: drupal

#167951

    ......@@ -4,11 +4,9 @@
    */
    .skip-link {
    z-index: 50;
    left: 50%;
    z-index: 503;
    inset-inline-start: 0;
    padding: 1px 10px 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1px solid #444;
    border-top-width: 0;
    border-radius: 0 0 10px 10px;
    ......
    ......@@ -19,13 +19,16 @@
    }
    .skip-link {
    z-index: 50;
    left: 50%;
    z-index: 503;
    top: 0;
    left: 0; /* LTR */
    padding: 1px 0.625rem 2px;
    transform: translateX(-50%);
    color: var(--skip-link-color);
    border-radius: 0 0 0.625rem 0.625rem;
    border-radius: 0 0 0.625rem 0; /* LTR */
    background: var(--skip-link-bg-color);
    box-shadow:
    0 0 0 2px var(--color-white),
    0 0 0 5px var(--color-focus);
    font-size: 0.94em;
    }
    ......@@ -43,3 +46,9 @@
    .skip-link.visually-hidden.focusable:focus {
    position: absolute !important;
    }
    [dir="rtl"] .skip-link {
    right: 0;
    left: auto;
    border-radius: 0 0 0 0.625rem;
    }
    ......@@ -12,13 +12,16 @@
    }
    .skip-link {
    z-index: 50;
    left: 50%;
    z-index: 503;
    top: 0;
    left: 0; /* LTR */
    padding: 1px 10px 2px;
    transform: translateX(-50%);
    color: var(--skip-link-color);
    border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 0; /* LTR */
    background: var(--skip-link-bg-color);
    box-shadow:
    0 0 0 2px var(--color-white),
    0 0 0 5px var(--color-focus);
    font-size: 0.94em;
    &:hover,
    &:active {
    ......@@ -32,3 +35,8 @@
    position: absolute !important;
    }
    }
    [dir="rtl"] .skip-link {
    right: 0;
    left: auto;
    border-radius: 0 0 0 10px;
    }
    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