forked from mirror/_s
Merge pull request #857 from davidakennedy/skiplinkcss
Do not show the outline on the skip link target container
This commit is contained in:
commit
cd883e9176
|
@ -25,3 +25,8 @@
|
|||
z-index: 100000; /* Above WP toolbar. */
|
||||
}
|
||||
}
|
||||
|
||||
/* Do not show the outline on the skip link target. */
|
||||
#content[tabindex="-1"]:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
|
|
@ -664,6 +664,11 @@ a:active {
|
|||
z-index: 100000; /* Above WP toolbar. */
|
||||
}
|
||||
|
||||
/* Do not show the outline on the skip link target. */
|
||||
#content[tabindex="-1"]:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
# Alignments
|
||||
--------------------------------------------------------------*/
|
||||
|
|
Reference in New Issue