Ticket #6371: 6371.diff
| File 6371.diff, 2.2 kB (added by mdawaffe, 4 months ago) |
|---|
-
wp-admin/includes/widgets.php
old new 102 102 <li id="widget-list-item-<?php echo attribute_escape( $widget['id'] ); ?>" class="widget-list-item"> 103 103 <h4 class="widget-title widget-draggable"> 104 104 105 < ?php echo $widget_title; ?>105 <span><?php echo $widget_title; ?></span> 106 106 107 107 <?php if ( 'add' == $action ) : ?> 108 108 … … 116 116 117 117 <?php endif; ?> 118 118 119 <br class="clear" /> 120 119 121 </h4> 120 122 121 123 … … 228 230 echo $sidebar_args['before_widget']; 229 231 ?> 230 232 <div class="widget-top"> 231 <h4 class="widget-title">< ?php echo $widget_title ?>233 <h4 class="widget-title"><span><?php echo $widget_title ?></span> 232 234 233 235 <?php if ( $edit ) : ?> 234 236 … … 240 242 241 243 <?php endif; ?> 242 244 245 <br class="clear" /> 246 243 247 </h4></div> 244 248 245 249 <div class="widget-control"<?php if ( $edit ) echo ' style="display: block;"'; ?>> -
wp-admin/css/widgets.css
old new 49 49 line-height: 1; 50 50 } 51 51 52 h4.widget-title span { 53 float: left; 54 } 55 56 h4.widget-title a { 57 float: right; 58 text-decoration: underline; 59 border-bottom: none; 60 margin-left: 1em; 61 } 62 52 63 ul#widget-list li.widget-list-item h4.widget-title { 53 64 position: relative; 54 65 margin: 0; … … 59 70 -moz-border-radius: 3px; 60 71 -khtml-border-radius: 3px; 61 72 -webkit-border-radius: 3px; 62 border-radius: 3px; ;73 border-radius: 3px; 63 74 } 64 75 65 76 #dragHelper h4.widget-title { … … 108 119 margin: 0; 109 120 cursor: move; 110 121 font-size: 13px; 111 padding: 0.4em 2.5em 0.4em0.8em;122 padding: 0.4em 0.8em; 112 123 position: relative; 113 124 -moz-border-radius: 3px; 114 125 -khtml-border-radius: 3px; … … 127 138 text-decoration: none; 128 139 } 129 140 130 h4.widget-title a {131 position: absolute;132 right: 1em;133 text-decoration: underline;134 border-bottom: none;135 }136 137 141 li.widget-list-control-item h4.widget-title a, 138 142 #dragHelper li.widget-list-control-item h4.widget-title a, 139 143 #draghelper li.widget-list-control-item h4.widget-title a:visited {
