Theme Customizer: Box model fixes for image picker thumbnails. see #19910.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2012-04-19 06:45:31 +00:00
parent 3dadfd1316
commit 4900af30f1
1 changed files with 7 additions and 3 deletions

View File

@ -319,14 +319,18 @@ body {
*/
.customize-section .customize-control-image .thumbnail {
float: right;
width: 140px;
min-height: 1em;
width: 138px;
min-height: 25px;
border: 1px solid #ccc;
margin-bottom: 5px;
background: #eee;
}
.customize-section .customize-control-image .thumbnail img {
display: block;
max-width: 138px;
max-height: 98px;
border: 1px solid #ccc;
margin: 0 auto;
}
.customize-section .customize-control-image .actions {