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

git-svn-id: https://develop.svn.wordpress.org/trunk@20530 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2012-04-19 06:45:31 +00:00
parent 3ac1beb836
commit 424fcf2a6e

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 {