~canonical-sysadmins/wordpress/5.1.2

« back to all changes in this revision

Viewing changes to wp-content/themes/twentynineteen/sass/navigation/_links.scss

  • Committer: Barry Price
  • Date: 2018-12-12 05:08:33 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: barry.price@canonical.com-20181212050833-y090hmrbmlxy37aa
Merge WP5.0 from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
a {
 
2
 
 
3
        @include link-transition;
 
4
        color: $color__link;
 
5
 
 
6
        &:visited {
 
7
                color: $color__link-visited;
 
8
        }
 
9
 
 
10
        &:hover,
 
11
        &:active {
 
12
                color: $color__link-hover;
 
13
                outline: 0;
 
14
                text-decoration: none;
 
15
        }
 
16
 
 
17
        &:focus {
 
18
                outline: thin dotted;
 
19
                text-decoration: underline;
 
20
        }
 
21
}