Changeset 22146
- Timestamp:
- 10/09/2012 07:07:09 PM (12 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/css/ie.css
r21878 r22146 1 1 /* Fixes for IE 7 bugs */ 2 3 #dashboard-widgets form .input-text-wrap input, 4 #dashboard-widgets form .textarea-wrap textarea { 5 width: 99%; 6 } 7 8 #dashboard-widgets form #title { 9 width: 98%; 10 } 2 11 3 12 .wp-editor-wrap .wp-editor-container textarea.wp-editor-area { -
trunk/wp-admin/css/wp-admin.css
r22127 r22146 2096 2096 .postbox .inside, 2097 2097 .stuffbox .inside { 2098 padding: 0 1 0px;2098 padding: 0 12px 0 10px; 2099 2099 line-height: 1.4em; 2100 2100 } … … 5969 5969 5970 5970 #dashboard-widgets form .input-text-wrap input { 5971 width: 99%;5971 width: 100%; 5972 5972 } 5973 5973 5974 5974 #dashboard-widgets form .textarea-wrap textarea { 5975 width: 99%;5975 width: 100%; 5976 5976 } 5977 5977 … … 5981 5981 padding: 0; 5982 5982 border: none; 5983 }5984 5985 #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit input {5986 margin: 0 5px 0 0;5987 5983 } 5988 5984 … … 6187 6183 6188 6184 /* QuickPress */ 6185 #dashboard_quick_press .easy-blogging { 6186 padding: 0 8px; 6187 text-align: left; 6188 } 6189 6189 6190 #dashboard_quick_press .input-text-wrap { 6190 6191 position: relative; … … 6194 6195 color: #bbb; 6195 6196 position: absolute; 6197 } 6198 6199 #dashboard_quick_press div.updated { 6200 padding: 0 5px; 6196 6201 } 6197 6202 -
trunk/wp-admin/includes/dashboard.php
r22089 r22146 481 481 $drafts =& $drafts_query->posts; 482 482 } 483 printf('<p class=" textright">' . __('You can also try %s, easy blogging from anywhere on the Web.') . '</p>', '<a href="' . esc_url( admin_url( 'tools.php' ) ) . '">' . __('Press This') . '</a>' );483 printf('<p class="easy-blogging">' . __('You can also try %s, easy blogging from anywhere on the Web.') . '</p>', '<a href="' . esc_url( admin_url( 'tools.php' ) ) . '">' . __('Press This') . '</a>' ); 484 484 $_REQUEST = array(); // hack for get_default_post_to_edit() 485 485 }
Note: See TracChangeset
for help on using the changeset viewer.