Accessibility: Improve toggling the "Post locked" information visibility.

- effectively hides the "Post locked" information from assistive technologies
- when a post is locked, reveals the "Post locked" information without CSS animation
- the height CSS animation didn't work anyways after [24906]

See #24553.
Fixes #44946.

Built from https://develop.svn.wordpress.org/trunk@45417


git-svn-id: http://core.svn.wordpress.org/trunk@45228 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrea Fercia 2019-05-25 17:15:52 +00:00
parent 48d9d94881
commit fc17576fd2
7 changed files with 33 additions and 42 deletions

View File

@ -537,13 +537,14 @@ th.asc a:focus span.sorting-indicator:before {
content: "\f142"; content: "\f142";
} }
tr.wp-locked .locked-indicator { .locked-indicator {
display: none;
margin-right: 6px; margin-right: 6px;
height: 20px; height: 20px;
width: 16px; width: 16px;
} }
tr.wp-locked .locked-indicator-icon:before { .locked-indicator-icon:before {
color: #82878c; color: #82878c;
content: "\f160"; content: "\f160";
display: inline-block; display: inline-block;
@ -554,30 +555,25 @@ tr.wp-locked .locked-indicator-icon:before {
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
tr.wp-locked .check-column label, .locked-info {
tr.wp-locked .check-column input[type="checkbox"],
tr.wp-locked .row-actions .inline,
tr.wp-locked .row-actions .trash {
display: none; display: none;
}
tr .locked-info {
height: 0;
opacity: 0;
}
tr.wp-locked .locked-info {
margin-top: 4px; margin-top: 4px;
height: auto;
opacity: 1;
} }
.locked-text { .locked-text {
vertical-align: top; vertical-align: top;
} }
tr.locked-info, tr.wp-locked .locked-info { .wp-locked .locked-indicator,
transition: height 1s, opacity 0.5s; .wp-locked .locked-info {
display: block;
}
tr.wp-locked .check-column label,
tr.wp-locked .check-column input[type="checkbox"],
tr.wp-locked .row-actions .inline,
tr.wp-locked .row-actions .trash {
display: none;
} }
.fixed .column-comments .sorting-indicator { .fixed .column-comments .sorting-indicator {

File diff suppressed because one or more lines are too long

View File

@ -537,13 +537,14 @@ th.asc a:focus span.sorting-indicator:before {
content: "\f142"; content: "\f142";
} }
tr.wp-locked .locked-indicator { .locked-indicator {
display: none;
margin-left: 6px; margin-left: 6px;
height: 20px; height: 20px;
width: 16px; width: 16px;
} }
tr.wp-locked .locked-indicator-icon:before { .locked-indicator-icon:before {
color: #82878c; color: #82878c;
content: "\f160"; content: "\f160";
display: inline-block; display: inline-block;
@ -554,30 +555,25 @@ tr.wp-locked .locked-indicator-icon:before {
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
tr.wp-locked .check-column label, .locked-info {
tr.wp-locked .check-column input[type="checkbox"],
tr.wp-locked .row-actions .inline,
tr.wp-locked .row-actions .trash {
display: none; display: none;
}
tr .locked-info {
height: 0;
opacity: 0;
}
tr.wp-locked .locked-info {
margin-top: 4px; margin-top: 4px;
height: auto;
opacity: 1;
} }
.locked-text { .locked-text {
vertical-align: top; vertical-align: top;
} }
tr.locked-info, tr.wp-locked .locked-info { .wp-locked .locked-indicator,
transition: height 1s, opacity 0.5s; .wp-locked .locked-info {
display: block;
}
tr.wp-locked .check-column label,
tr.wp-locked .check-column input[type="checkbox"],
tr.wp-locked .row-actions .inline,
tr.wp-locked .row-actions .trash {
display: none;
} }
.fixed .column-comments .sorting-indicator { .fixed .column-comments .sorting-indicator {

File diff suppressed because one or more lines are too long

View File

@ -529,8 +529,7 @@ $( document ).on( 'heartbeat-tick.wp-check-locked-posts', function( e, data ) {
row.addClass('wp-locked'); row.addClass('wp-locked');
} }
} else if ( row.hasClass('wp-locked') ) { } else if ( row.hasClass('wp-locked') ) {
// Make room for the CSS animation row.removeClass( 'wp-locked' ).find( '.locked-info span' ).empty();
row.removeClass('wp-locked').delay(1000).find('.locked-info span').empty();
} }
}); });
}).on( 'heartbeat-send.wp-check-locked-posts', function( e, data ) { }).on( 'heartbeat-send.wp-check-locked-posts', function( e, data ) {

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.3-alpha-45416'; $wp_version = '5.3-alpha-45417';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.