51 lines
1.4 KiB
SCSS
51 lines
1.4 KiB
SCSS
// Links
|
|
//
|
|
// Hyperlinks are used to allow the user to navigate to other resources or to
|
|
// download a resource.
|
|
//
|
|
// The order of link states are based on Eric Meyer's article:
|
|
// http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
|
|
//
|
|
// :visited - A link that has already been visited.
|
|
// :hover - A link that is being hovered over.
|
|
// :focus - A link that has been given keyboard focus.
|
|
// :active - A link that is being actively clicked.
|
|
|
|
a,
|
|
%link {
|
|
color: $link;
|
|
// sass-lint:disable no-vendor-prefixes
|
|
// Remove gaps in links underline in iOS 8+ and Safari 8+.
|
|
-webkit-text-decoration-skip: objects;
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
|
|
-ms-word-break: break-all;
|
|
/* This is the dangerous one in WebKit, as it breaks things wherever */
|
|
word-break: break-all;
|
|
/* Instead use this non-standard one: */
|
|
word-break: break-word;
|
|
|
|
/* Adds a hyphen where the word breaks, if supported (No Blink) */
|
|
-ms-hyphens: auto;
|
|
-moz-hyphens: auto;
|
|
-webkit-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|
|
|
|
// Any element can receive focus, but only links can be visited, so we can
|
|
// safely lower this selector's specificity. This also ensures visited links
|
|
// with additional styles won't have their styles overridden.
|
|
:visited {
|
|
color: $link-visited;
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
color: $link-hover;
|
|
}
|
|
|
|
a:active {
|
|
color: $link-active;
|
|
}
|
|
|