_links.scss 339 B

123456789101112131415161718
  1. .wp-block-post-content a:not(.wp-block-button__link) {
  2. text-decoration-line: underline;
  3. &:hover {
  4. text-decoration: none;
  5. }
  6. }
  7. // Select the focus states of all non-wpadmin and screen reader links
  8. a:not(.ab-item):not(.screen-reader-shortcut) {
  9. &:active,
  10. &:focus {
  11. outline: 1px dotted currentcolor;
  12. text-decoration: none;
  13. }
  14. }