Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/wp-admin/css/list-tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,8 @@ div.action-links,
display: block;
}

.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) {
.wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column),
.wp-list-table tbody tr:not(.inline-edit-row):not(.no-items) th:not(.check-column) {
position: relative;
clear: both;
width: auto !important; /* needs to override some columns that are more specifically targeted */
Expand All @@ -1966,7 +1967,8 @@ div.action-links,
text-overflow: ellipsis;
}

.wp-list-table .is-expanded td:not(.hidden) {
.wp-list-table .is-expanded td:not(.hidden):not(.check-column),
.wp-list-table .is-expanded th:not(.hidden):not(.check-column) {
display: block !important;
overflow: hidden; /* clearfix */
}
Expand Down
Loading