skip-link.pcss.css
Same filename in this branch
Same filename in other branches
Skip link
Allows keyboard users to quickly skip to the main content of the page.
File
-
core/
themes/ olivero/ css/ components/ skip-link.pcss.css
View source
- /**
- * @file
- * Skip link
- *
- * Allows keyboard users to quickly skip to the main content of the page.
- */
-
- @import "../base/variables.pcss.css";
-
- .skip-link {
- display: block;
- width: 100%;
- max-width: var(--max-bg-color);
- padding-block: var(--sp0-5);
- padding-inline-start: var(--sp);
- padding-inline-end: var(--sp);
- text-decoration: none;
- color: var(--color--white);
- outline: 0;
- background-color: var(--color--gray-0);
-
- &:hover {
- text-decoration: underline;
- color: var(--color--white);
- }
-
- &:after {
- content: "\0020 ➔";
- }
- }
-
- .skip-link.focusable:focus {
- position: absolute !important; /* Override position from module file. */
- z-index: 503;
- width: 100%;
- height: 40px;
- outline: none;
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.