Bundled themes: update CSS rules for .screen-reader-text
to be consistent with current accessibility guidelines. Fixes #31279.
git-svn-id: https://develop.svn.wordpress.org/trunk@31464 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c77e726eef
commit
9e3fffdf09
@ -498,6 +498,9 @@ a:hover {
|
||||
position: absolute !important;
|
||||
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
overflow: hidden;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
}
|
||||
#access a.assistive-text:focus,
|
||||
.screen-reader-text:hover,
|
||||
|
@ -716,7 +716,10 @@ div.wp-caption.alignright .wp-caption-text {
|
||||
|
||||
.screen-reader-text {
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
position: absolute !important;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.screen-reader-text:focus {
|
||||
|
@ -101,13 +101,6 @@ blockquote {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* Text meant only for screen readers */
|
||||
.screen-reader-text {
|
||||
left: auto;
|
||||
text-indent:-9000px;
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
|
||||
/* =Header
|
||||
-------------------------------------------------------------- */
|
||||
|
@ -337,8 +337,11 @@ a:hover {
|
||||
|
||||
/* Text meant only for screen readers */
|
||||
.screen-reader-text {
|
||||
position: absolute;
|
||||
left: -9000px;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
overflow: hidden;
|
||||
position: absolute !important;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
|
||||
|
@ -195,7 +195,7 @@ img.alignleft {
|
||||
}
|
||||
|
||||
.ie7 .screen-reader-text {
|
||||
clip: rect(1px 1px 1px 1px); /* IE7 */
|
||||
clip: rect(1px 1px 1px 1px);
|
||||
}
|
||||
|
||||
.ie7 .site-header {
|
||||
|
@ -539,7 +539,10 @@ hr {
|
||||
/* Assistive text */
|
||||
.screen-reader-text {
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
overflow: hidden;
|
||||
position: absolute !important;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.screen-reader-text:focus {
|
||||
|
@ -17,7 +17,7 @@ body.custom-background-white .site {
|
||||
}
|
||||
.assistive-text,
|
||||
.site .screen-reader-text {
|
||||
clip: rect(1px 1px 1px 1px); /* IE7 */
|
||||
clip: rect(1px 1px 1px 1px);
|
||||
}
|
||||
.full-width .site-content {
|
||||
float: none;
|
||||
|
@ -506,6 +506,9 @@ a:hover {
|
||||
.site .screen-reader-text {
|
||||
position: absolute !important;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
overflow: hidden;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
}
|
||||
.main-navigation .assistive-text:focus,
|
||||
.site .screen-reader-text:hover,
|
||||
|
Loading…
Reference in New Issue
Block a user