Tighten list table styles. see #17324.

git-svn-id: http://svn.automattic.com/wordpress/trunk@17874 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2011-05-12 00:57:25 +00:00
parent 4a33d56ab4
commit 83d86edc1d
7 changed files with 18 additions and 16 deletions

File diff suppressed because one or more lines are too long

View File

@ -499,6 +499,12 @@ h3.dashboard-widget-title small,
.find-box-head {
color: #333;
background: #e9e9e9;
background-image: -ms-linear-gradient(top, #f4f4f4, #e9e9e9); /* IE10 */
background-image: -moz-linear-gradient(top, #f4f4f4, #e9e9e9); /* Firefox */
background-image: -o-linear-gradient(top, #f4f4f4, #e9e9e9); /* Opera */
background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#e9e9e9)); /* old Webkit */
background-image: -webkit-linear-gradient(top, #f4f4f4, #e9e9e9); /* new Webkit */
background-image: linear-gradient(top, #f4f4f4, #e9e9e9); /* proposed W3C Markup */
}
th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
@ -607,14 +613,14 @@ input.readonly, textarea.readonly {
.side-info,
.plugins tr,
#your-profile #rich_editing {
background-color: #fff;
background-color: #fcfcfc;
}
.plugins .inactive,
.plugins .inactive th,
.plugins .inactive td,
tr.inactive + tr.plugin-update-tr .plugin-update {
background-color: #eee;
background-color: #f4f4f4;
}
.plugin-update-tr .update-message {

File diff suppressed because one or more lines are too long

View File

@ -446,7 +446,7 @@ ol.ol-decimal > li {
.widefat td {
font-size: 12px;
padding: 6px 7px 2px;
padding: 4px 7px 2px;
vertical-align: top;
}
@ -457,7 +457,7 @@ ol.ol-decimal > li {
}
.widefat th {
padding: 10px 7px 11px;
padding: 7px 7px 8px;
text-align: left;
line-height: 1.3em;
font-size: 14px;
@ -471,7 +471,7 @@ ol.ol-decimal > li {
.widefat .check-column {
width: 2.2em;
padding: 14px 0 0;
padding: 11px 0 0;
vertical-align: top;
}

File diff suppressed because one or more lines are too long

View File

@ -1771,7 +1771,7 @@ th.sortable a,
th.sorted a {
display: block;
overflow: hidden;
padding: 10px 7px 11px;
padding: 7px 7px 8px;
}
.fixed .column-comments.sortable a,
.fixed .column-comments.sorted a {
@ -4128,10 +4128,6 @@ input.button-highlighted,
padding: 7px 0;
}
.plugins td, .plugins th {
border-bottom: 0 none;
}
.plugins .inactive td,
.plugins .inactive th,
.plugins .active td,

View File

@ -487,13 +487,13 @@ function wp_default_styles( &$styles ) {
// Any rtl stylesheets that don't have a .dev version for ltr
$no_suffix = array( 'farbtastic' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110511j' );
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110511k' );
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20101102' );
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20110511j';
$colors_version = '20110511k';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );
@ -503,7 +503,7 @@ function wp_default_styles( &$styles ) {
$styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array(), $colors_version );
$styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20101213' );
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110511e' );
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110511f' );
$styles->add( 'media', "/wp-admin/css/media$suffix.css", array(), '20110121' );
$styles->add( 'widgets', "/wp-admin/css/widgets$suffix.css", array(), '20110511' );
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110511b' );