[wp-trac] [WordPress Trac] #23147: Twenty Twelve: Proper padding to floating images with caption

WordPress Trac noreply at wordpress.org
Tue Jan 8 18:36:49 UTC 2013


#23147: Twenty Twelve: Proper padding to floating images with caption
-----------------------------+---------------------------
 Reporter:  TomasM           |       Type:  enhancement
   Status:  new              |   Priority:  normal
Milestone:  Awaiting Review  |  Component:  Bundled Theme
  Version:  3.5              |   Severity:  normal
 Keywords:  dev-feedback     |
-----------------------------+---------------------------
 Floating image with caption isn't padded well. We would have to change
 style.CSS lines


 {{{
 img.alignleft {
         margin: 12px 24px 12px 0;
         margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
 }
 img.alignright {
         margin: 12px 0 12px 24px;
         margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
 }
 img.aligncenter {
         margin-top: 12px;
         margin-top: 0.857142857rem;
         margin-bottom: 12px;
         margin-bottom: 0.857142857rem;
 }
 }}}

 to:


 {{{
 img.alignleft,
 div.alignleft {
         margin: 12px 24px 12px 0;
         margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
 }
 img.alignright,
 div.alignright {
         margin: 12px 0 12px 24px;
         margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
 }
 img.aligncenter,
 div.aligncenter {
         margin-top: 12px;
         margin-top: 0.857142857rem;
         margin-bottom: 12px;
         margin-bottom: 0.857142857rem;
 }
 }}}

-- 
Ticket URL: <http://core.trac.wordpress.org/ticket/23147>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software


More information about the wp-trac mailing list