List tables: Ensure special CSS for the title column gets applied.

This could have some side effects if a custom list table has a title column with a strong element inside that is not the post title, but that is fairly edge and we can address that if it comes up. Also moves the rules into `list-tables.css`.

see #25408.

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


git-svn-id: http://core.svn.wordpress.org/trunk@33076 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2015-07-07 15:21:25 +00:00
parent 81c2f541b0
commit 958cde5134
7 changed files with 27 additions and 29 deletions

View File

@ -291,19 +291,6 @@ form#tags-filter {
position: relative;
}
/* Edit posts */
td.post-title strong,
td.plugin-title strong {
display: block;
margin-bottom: .2em;
font-size: 14px;
}
td.post-title p,
td.plugin-title p {
margin: 6px 0;
}
/* Global classes */
.wp-hidden-children .wp-hidden-child,
.ui-tabs-hide {

View File

@ -291,19 +291,6 @@ form#tags-filter {
position: relative;
}
/* Edit posts */
td.post-title strong,
td.plugin-title strong {
display: block;
margin-bottom: .2em;
font-size: 14px;
}
td.post-title p,
td.plugin-title p {
margin: 6px 0;
}
/* Global classes */
.wp-hidden-children .wp-hidden-child,
.ui-tabs-hide {

View File

@ -296,6 +296,18 @@ table.fixed {
float: right;
}
td.column-title strong,
td.plugin-title strong {
display: block;
margin-bottom: .2em;
font-size: 14px;
}
td.column-title p,
td.plugin-title p {
margin: 6px 0;
}
/* Media file column */
table.media .column-title {
position: relative;

View File

@ -296,6 +296,18 @@ table.fixed {
float: left;
}
td.column-title strong,
td.plugin-title strong {
display: block;
margin-bottom: .2em;
font-size: 14px;
}
td.column-title p,
td.plugin-title p {
margin: 6px 0;
}
/* Media file column */
table.media .column-title {
position: relative;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta1-33104';
$wp_version = '4.3-beta1-33105';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.