From c96a56c22321862304157b3a1b41a1ece213eab1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 9 Dec 2019 14:24:26 +0000 Subject: [PATCH] Administration: Correct checkbox width in list tables on smaller screens. Previously, checkboxes for pending comments were partially hidden due to an added `4px` border. Props audrasjb, jeremyfelt, talldanwp, melchoyce, marcelo2605, waleedt93. Fixes #48815. git-svn-id: https://develop.svn.wordpress.org/trunk@46845 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/list-tables.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css index 48dd10bffb..3de3f014c1 100644 --- a/src/wp-admin/css/list-tables.css +++ b/src/wp-admin/css/list-tables.css @@ -1763,7 +1763,10 @@ div.action-links, /* Checkboxes need to show */ .wp-list-table tr th.check-column { display: table-cell; - width: 35px; + } + + .wp-list-table .check-column { + width: 2.5em; } .wp-list-table .column-primary .toggle-row {