| 1 | Index: wp-admin/includes/plugin-install.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-admin/includes/plugin-install.php (revision 21940) |
|---|
| 4 | +++ wp-admin/includes/plugin-install.php (working copy) |
|---|
| 5 | @@ -130,7 +130,7 @@ |
|---|
| 6 | <?php endif; ?> |
|---|
| 7 | <input type="search" name="s" value="<?php echo esc_attr($term) ?>" autofocus="autofocus" /> |
|---|
| 8 | <label class="screen-reader-text" for="plugin-search-input"><?php _e('Search Plugins'); ?></label> |
|---|
| 9 | - <?php submit_button( __( 'Search Plugins' ), 'small', 'plugin-search-input', false ); ?> |
|---|
| 10 | + <?php submit_button( __( 'Search Plugins' ), 'button', 'plugin-search-input', false ); ?> |
|---|
| 11 | </form><?php |
|---|
| 12 | } |
|---|
| 13 | |
|---|
| 14 | Index: wp-admin/includes/dashboard.php |
|---|
| 15 | =================================================================== |
|---|
| 16 | --- wp-admin/includes/dashboard.php (revision 21940) |
|---|
| 17 | +++ wp-admin/includes/dashboard.php (working copy) |
|---|
| 18 | @@ -439,14 +439,14 @@ |
|---|
| 19 | <form action="<?php echo network_admin_url('users.php'); ?>" method="get"> |
|---|
| 20 | <p> |
|---|
| 21 | <input type="search" name="s" value="" size="30" autocomplete="off" /> |
|---|
| 22 | - <?php submit_button( __( 'Search Users' ), 'small', 'submit', false, array( 'id' => 'submit_users' ) ); ?> |
|---|
| 23 | + <?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?> |
|---|
| 24 | </p> |
|---|
| 25 | </form> |
|---|
| 26 | |
|---|
| 27 | <form action="<?php echo network_admin_url('sites.php'); ?>" method="get"> |
|---|
| 28 | <p> |
|---|
| 29 | <input type="search" name="s" value="" size="30" autocomplete="off" /> |
|---|
| 30 | - <?php submit_button( __( 'Search Sites' ), 'small', 'submit', false, array( 'id' => 'submit_sites' ) ); ?> |
|---|
| 31 | + <?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?> |
|---|
| 32 | </p> |
|---|
| 33 | </form> |
|---|
| 34 | <?php |
|---|
| 35 | Index: wp-admin/includes/class-wp-list-table.php |
|---|
| 36 | =================================================================== |
|---|
| 37 | --- wp-admin/includes/class-wp-list-table.php (revision 21940) |
|---|
| 38 | +++ wp-admin/includes/class-wp-list-table.php (working copy) |
|---|
| 39 | @@ -218,7 +218,7 @@ |
|---|
| 40 | <p class="search-box"> |
|---|
| 41 | <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> |
|---|
| 42 | <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>" /> |
|---|
| 43 | - <?php submit_button( $text, 'small', false, false, array('id' => 'search-submit') ); ?> |
|---|
| 44 | + <?php submit_button( $text, 'button', false, false, array('id' => 'search-submit') ); ?> |
|---|
| 45 | </p> |
|---|
| 46 | <?php |
|---|
| 47 | } |
|---|
| 48 | Index: wp-admin/includes/meta-boxes.php |
|---|
| 49 | =================================================================== |
|---|
| 50 | --- wp-admin/includes/meta-boxes.php (revision 21940) |
|---|
| 51 | +++ wp-admin/includes/meta-boxes.php (working copy) |
|---|
| 52 | @@ -206,19 +206,19 @@ |
|---|
| 53 | if ( $can_publish ) : |
|---|
| 54 | if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?> |
|---|
| 55 | <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Schedule') ?>" /> |
|---|
| 56 | - <?php submit_button( __( 'Schedule' ), 'primary', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|---|
| 57 | + <?php submit_button( __( 'Schedule' ), 'primary button-medium', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|---|
| 58 | <?php else : ?> |
|---|
| 59 | <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" /> |
|---|
| 60 | - <?php submit_button( __( 'Publish' ), 'primary', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|---|
| 61 | + <?php submit_button( __( 'Publish' ), 'primary button-medium', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|---|
| 62 | <?php endif; |
|---|
| 63 | else : ?> |
|---|
| 64 | <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Submit for Review') ?>" /> |
|---|
| 65 | - <?php submit_button( __( 'Submit for Review' ), 'primary', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|---|
| 66 | + <?php submit_button( __( 'Submit for Review' ), 'primary button-medium', 'publish', false, array( 'accesskey' => 'p' ) ); ?> |
|---|
| 67 | <?php |
|---|
| 68 | endif; |
|---|
| 69 | } else { ?> |
|---|
| 70 | <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" /> |
|---|
| 71 | - <input name="save" type="submit" class="button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" /> |
|---|
| 72 | + <input name="save" type="submit" class="button-primary button-medium" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" /> |
|---|
| 73 | <?php |
|---|
| 74 | } ?> |
|---|
| 75 | </div> |
|---|
| 76 | @@ -286,7 +286,7 @@ |
|---|
| 77 | <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $box['title']; ?></label> |
|---|
| 78 | <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div> |
|---|
| 79 | <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" /> |
|---|
| 80 | - <input type="button" class="button button-tiny tagadd" value="<?php esc_attr_e('Add'); ?>" /></p> |
|---|
| 81 | + <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p> |
|---|
| 82 | </div> |
|---|
| 83 | <p class="howto"><?php echo esc_attr( $taxonomy->labels->separate_items_with_commas ); ?></p> |
|---|
| 84 | <?php endif; ?> |
|---|
| 85 | @@ -636,9 +636,9 @@ |
|---|
| 86 | |
|---|
| 87 | <div id="publishing-action"> |
|---|
| 88 | <?php if ( !empty($link->link_id) ) { ?> |
|---|
| 89 | - <input name="save" type="submit" class="button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" /> |
|---|
| 90 | + <input name="save" type="submit" class="button-medium button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" /> |
|---|
| 91 | <?php } else { ?> |
|---|
| 92 | - <input name="save" type="submit" class="button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" /> |
|---|
| 93 | + <input name="save" type="submit" class="button-medium button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" /> |
|---|
| 94 | <?php } ?> |
|---|
| 95 | </div> |
|---|
| 96 | <div class="clear"></div> |
|---|
| 97 | Index: wp-admin/includes/widgets.php |
|---|
| 98 | =================================================================== |
|---|
| 99 | --- wp-admin/includes/widgets.php (revision 21940) |
|---|
| 100 | +++ wp-admin/includes/widgets.php (working copy) |
|---|
| 101 | @@ -212,7 +212,7 @@ |
|---|
| 102 | </div> |
|---|
| 103 | <div class="alignright<?php if ( 'noform' === $has_form ) echo ' widget-control-noform'; ?>"> |
|---|
| 104 | <img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" class="ajax-feedback" title="" alt="" /> |
|---|
| 105 | - <?php submit_button( __( 'Save' ), 'button-primary widget-control-save', 'savewidget', false, array( 'id' => 'widget-' . esc_attr( $id_format ) . '-savewidget' ) ); ?> |
|---|
| 106 | + <?php submit_button( __( 'Save' ), 'button button-primary widget-control-save', 'savewidget', false, array( 'id' => 'widget-' . esc_attr( $id_format ) . '-savewidget' ) ); ?> |
|---|
| 107 | </div> |
|---|
| 108 | <br class="clear" /> |
|---|
| 109 | </div> |
|---|
| 110 | Index: wp-admin/includes/nav-menu.php |
|---|
| 111 | =================================================================== |
|---|
| 112 | --- wp-admin/includes/nav-menu.php (revision 21940) |
|---|
| 113 | +++ wp-admin/includes/nav-menu.php (working copy) |
|---|
| 114 | @@ -693,7 +693,7 @@ |
|---|
| 115 | <p class="quick-search-wrap"> |
|---|
| 116 | <input type="search" class="quick-search input-with-default-title" title="<?php esc_attr_e('Search'); ?>" value="<?php echo $searched; ?>" name="quick-search-posttype-<?php echo $post_type_name; ?>" /> |
|---|
| 117 | <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /> |
|---|
| 118 | - <?php submit_button( __( 'Search' ), 'quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-posttype-' . $post_type_name ) ); ?> |
|---|
| 119 | + <?php submit_button( __( 'Search' ), 'button-tiny quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-posttype-' . $post_type_name ) ); ?> |
|---|
| 120 | </p> |
|---|
| 121 | |
|---|
| 122 | <ul id="<?php echo $post_type_name; ?>-search-checklist" class="list:<?php echo $post_type_name?> categorychecklist form-no-clear"> |
|---|
| 123 | @@ -924,7 +924,7 @@ |
|---|
| 124 | <p class="quick-search-wrap"> |
|---|
| 125 | <input type="search" class="quick-search input-with-default-title" title="<?php esc_attr_e('Search'); ?>" value="<?php echo $searched; ?>" name="quick-search-taxonomy-<?php echo $taxonomy_name; ?>" /> |
|---|
| 126 | <img class="waiting" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /> |
|---|
| 127 | - <?php submit_button( __( 'Search' ), 'quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-taxonomy-' . $taxonomy_name ) ); ?> |
|---|
| 128 | + <?php submit_button( __( 'Search' ), 'button-tiny quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-taxonomy-' . $taxonomy_name ) ); ?> |
|---|
| 129 | </p> |
|---|
| 130 | |
|---|
| 131 | <ul id="<?php echo $taxonomy_name; ?>-search-checklist" class="list:<?php echo $taxonomy_name?> categorychecklist form-no-clear"> |
|---|
| 132 | Index: wp-admin/custom-header.php |
|---|
| 133 | =================================================================== |
|---|
| 134 | --- wp-admin/custom-header.php (revision 21940) |
|---|
| 135 | +++ wp-admin/custom-header.php (working copy) |
|---|
| 136 | @@ -558,7 +558,7 @@ |
|---|
| 137 | <input type="file" id="upload" name="import" /> |
|---|
| 138 | <input type="hidden" name="action" value="save" /> |
|---|
| 139 | <?php wp_nonce_field( 'custom-header-upload', '_wpnonce-custom-header-upload' ); ?> |
|---|
| 140 | - <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?> |
|---|
| 141 | + <?php submit_button( __( 'Upload' ), 'tiny', 'submit', false ); ?> |
|---|
| 142 | </p> |
|---|
| 143 | <?php |
|---|
| 144 | $image_library_url = get_upload_iframe_src( 'image', null, 'library' ); |
|---|
| 145 | Index: wp-admin/css/colors-fresh.css |
|---|
| 146 | =================================================================== |
|---|
| 147 | --- wp-admin/css/colors-fresh.css (revision 21940) |
|---|
| 148 | +++ wp-admin/css/colors-fresh.css (working copy) |
|---|
| 149 | @@ -378,15 +378,15 @@ |
|---|
| 150 | .submit input, |
|---|
| 151 | input[type=button], |
|---|
| 152 | input[type=submit] { |
|---|
| 153 | - background: #ececec; |
|---|
| 154 | + background: #f3f3f3; |
|---|
| 155 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); |
|---|
| 156 | background-image: -webkit-linear-gradient(top, #fff, #eee); |
|---|
| 157 | background-image: -moz-linear-gradient(top, #fff, #eee); |
|---|
| 158 | background-image: -o-linear-gradient(top, #fff, #eee); |
|---|
| 159 | background-image: linear-gradient(to bottom, #fff, #eee); |
|---|
| 160 | border-color: #ccc; |
|---|
| 161 | - -webkit-box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); |
|---|
| 162 | - box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); |
|---|
| 163 | + -webkit-box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9); |
|---|
| 164 | + box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9); |
|---|
| 165 | color: #464646; |
|---|
| 166 | text-shadow: 1px 1px 0 #fff; |
|---|
| 167 | } |
|---|
| 168 | @@ -407,22 +407,34 @@ |
|---|
| 169 | input[type=button].focus, |
|---|
| 170 | input[type=button]:focus, |
|---|
| 171 | input[type=submit]:focus { |
|---|
| 172 | - background: #ececec; |
|---|
| 173 | - background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); |
|---|
| 174 | - background-image: -webkit-linear-gradient(top, #fff, #eee); |
|---|
| 175 | - background-image: -moz-linear-gradient(top, #fff, #eee); |
|---|
| 176 | - background-image: -o-linear-gradient(top, #fff, #eee); |
|---|
| 177 | - background-image: linear-gradient(to bottom, #fff, #eee); |
|---|
| 178 | + background: #f3f3f3; |
|---|
| 179 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); |
|---|
| 180 | + background-image: -webkit-linear-gradient(top, #fff, #f3f3f3); |
|---|
| 181 | + background-image: -moz-linear-gradient(top, #fff, #f3f3f3); |
|---|
| 182 | + background-image: -o-linear-gradient(top, #fff, #f3f3f3); |
|---|
| 183 | + background-image: linear-gradient(to bottom, #fff, #f3f3f3); |
|---|
| 184 | border-color: #bbb; |
|---|
| 185 | - -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 186 | - box-shadow: 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 187 | + -webkit-box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 188 | + box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 189 | color: #000; |
|---|
| 190 | } |
|---|
| 191 | |
|---|
| 192 | +.button.focus, |
|---|
| 193 | +.button:focus, |
|---|
| 194 | +.button-secondary.focus, |
|---|
| 195 | +.button-secondary:focus, |
|---|
| 196 | +.submit input.focus, |
|---|
| 197 | +.submit input:focus, |
|---|
| 198 | +input[type=button].focus, |
|---|
| 199 | +input[type=button]:focus, |
|---|
| 200 | +input[type=submit]:focus { |
|---|
| 201 | + border-color: #999; |
|---|
| 202 | + -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2); |
|---|
| 203 | + box-shadow: 1px 1px 1px rgba(0,0,0,.2); |
|---|
| 204 | +} |
|---|
| 205 | + |
|---|
| 206 | .button.active, |
|---|
| 207 | .button:active, |
|---|
| 208 | -.small.active, |
|---|
| 209 | -.small:active, |
|---|
| 210 | .button-secondary.active, |
|---|
| 211 | .button-secondary:active, |
|---|
| 212 | .submit input:active, |
|---|
| 213 | @@ -441,18 +453,6 @@ |
|---|
| 214 | box-shadow: inset 1px 1px 0 rgba(50,50,50,0.1); |
|---|
| 215 | } |
|---|
| 216 | |
|---|
| 217 | -.button.focus, |
|---|
| 218 | -.button:focus, |
|---|
| 219 | -.button-secondary.focus, |
|---|
| 220 | -.button-secondary:focus, |
|---|
| 221 | -.submit input.focus, |
|---|
| 222 | -.submit input:focus, |
|---|
| 223 | -input[type=button].focus, |
|---|
| 224 | -input[type=button]:focus, |
|---|
| 225 | -input[type=submit]:focus { |
|---|
| 226 | - border-color: #aaa; |
|---|
| 227 | -} |
|---|
| 228 | - |
|---|
| 229 | input.button-primary, |
|---|
| 230 | button.button-primary, |
|---|
| 231 | a.button-primary { |
|---|
| 232 | @@ -492,6 +492,15 @@ |
|---|
| 233 | text-shadow: -1px -1px 0 rgba(0,0,0,0.3); |
|---|
| 234 | } |
|---|
| 235 | |
|---|
| 236 | +input.button-primary.focus, |
|---|
| 237 | +input.button-primary:focus, |
|---|
| 238 | +button.button-primary:focus, |
|---|
| 239 | +a.button-primary:focus { |
|---|
| 240 | + border-color: #0e3950; |
|---|
| 241 | + -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,.4); |
|---|
| 242 | + box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,.4); |
|---|
| 243 | +} |
|---|
| 244 | + |
|---|
| 245 | input.button-primary.active, |
|---|
| 246 | input.button-primary:active, |
|---|
| 247 | button.button-primary:active, |
|---|
| 248 | @@ -508,13 +517,6 @@ |
|---|
| 249 | box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1); |
|---|
| 250 | } |
|---|
| 251 | |
|---|
| 252 | -input.button-primary.focus, |
|---|
| 253 | -input.button-primary:focus, |
|---|
| 254 | -button.button-primary:focus, |
|---|
| 255 | -a.button-primary:focus { |
|---|
| 256 | - border-color: #124560; |
|---|
| 257 | -} |
|---|
| 258 | - |
|---|
| 259 | .button-disabled, |
|---|
| 260 | .button[disabled], |
|---|
| 261 | .button:disabled, |
|---|
| 262 | @@ -536,6 +538,11 @@ |
|---|
| 263 | box-shadow: none !important; |
|---|
| 264 | } |
|---|
| 265 | |
|---|
| 266 | +.button-primary-disabled:hover, |
|---|
| 267 | +.button-primary[disabled]:hover { |
|---|
| 268 | + text-shadow: none; |
|---|
| 269 | +} |
|---|
| 270 | + |
|---|
| 271 | a:hover, |
|---|
| 272 | a:active { |
|---|
| 273 | color: #d54e21; |
|---|
| 274 | Index: wp-admin/css/wp-admin.css |
|---|
| 275 | =================================================================== |
|---|
| 276 | --- wp-admin/css/wp-admin.css (revision 21940) |
|---|
| 277 | +++ wp-admin/css/wp-admin.css (working copy) |
|---|
| 278 | @@ -783,32 +783,32 @@ |
|---|
| 279 | display: inline-block; |
|---|
| 280 | text-decoration: none; |
|---|
| 281 | font-size: 12px; |
|---|
| 282 | - line-height: 15px; |
|---|
| 283 | + line-height: 17px; |
|---|
| 284 | + height: 15px; |
|---|
| 285 | margin: 0; |
|---|
| 286 | - padding: 0.5em 0.8em 0.4em; |
|---|
| 287 | + padding: 0.25em 0.8em 0.35em; |
|---|
| 288 | cursor: pointer; |
|---|
| 289 | border-width: 1px; |
|---|
| 290 | border-style: solid; |
|---|
| 291 | - -webkit-border-radius: 3px; |
|---|
| 292 | - border-radius: 3px; |
|---|
| 293 | + -webkit-border-radius: 4px; |
|---|
| 294 | + border-radius: 4px; |
|---|
| 295 | -webkit-box-sizing: content-box; |
|---|
| 296 | -moz-box-sizing: content-box; |
|---|
| 297 | box-sizing: content-box; |
|---|
| 298 | white-space: nowrap; |
|---|
| 299 | } |
|---|
| 300 | |
|---|
| 301 | -.button.button-small { |
|---|
| 302 | - padding: 3px .8em 2px; |
|---|
| 303 | +.button.button-medium { |
|---|
| 304 | + padding: 0.4em 0.8em 0.5em; |
|---|
| 305 | } |
|---|
| 306 | |
|---|
| 307 | .button.button-large { |
|---|
| 308 | font-size: 14px; |
|---|
| 309 | - padding: 0.6em 1em 0.5em; |
|---|
| 310 | + padding: 0.5em 1em 0.6em; |
|---|
| 311 | } |
|---|
| 312 | |
|---|
| 313 | .button.button-tiny { |
|---|
| 314 | - padding: .2em .8em; |
|---|
| 315 | - font-size: 11px; |
|---|
| 316 | + padding: 0.15em 0.8em 0.17em; |
|---|
| 317 | } |
|---|
| 318 | |
|---|
| 319 | #minor-publishing-actions input, |
|---|
| 320 | @@ -843,10 +843,12 @@ |
|---|
| 321 | #doaction, |
|---|
| 322 | #doaction2, |
|---|
| 323 | #post-query-submit { |
|---|
| 324 | - margin-right: 8px; |
|---|
| 325 | + margin: 1px 8px 0 0; |
|---|
| 326 | } |
|---|
| 327 | |
|---|
| 328 | .tablenav .actions select { |
|---|
| 329 | + float: left; |
|---|
| 330 | + margin-right: 6px; |
|---|
| 331 | max-width: 200px; |
|---|
| 332 | } |
|---|
| 333 | |
|---|
| 334 | @@ -894,6 +896,12 @@ |
|---|
| 335 | margin: 0; |
|---|
| 336 | } |
|---|
| 337 | |
|---|
| 338 | +.search-box input[name="s"], #search-plugins input[name="s"], .tagsdiv .newtag { |
|---|
| 339 | + float: left; |
|---|
| 340 | + height: 2em; |
|---|
| 341 | + margin: 0 4px 0 0; |
|---|
| 342 | +} |
|---|
| 343 | + |
|---|
| 344 | input[type="text"].ui-autocomplete-loading { |
|---|
| 345 | background: transparent url('../images/loading.gif') no-repeat right center; |
|---|
| 346 | visibility: visible; |
|---|
| 347 | @@ -2482,6 +2490,7 @@ |
|---|
| 348 | } |
|---|
| 349 | |
|---|
| 350 | .tablenav .actions { |
|---|
| 351 | + overflow: hidden; |
|---|
| 352 | padding: 2px 8px 0 0; |
|---|
| 353 | } |
|---|
| 354 | |
|---|
| 355 | @@ -5848,7 +5857,7 @@ |
|---|
| 356 | } |
|---|
| 357 | |
|---|
| 358 | #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit input { |
|---|
| 359 | - margin: 0; |
|---|
| 360 | + margin: 0 5px 0 0; |
|---|
| 361 | } |
|---|
| 362 | |
|---|
| 363 | #dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish { |
|---|
| 364 | @@ -6105,7 +6114,7 @@ |
|---|
| 365 | } |
|---|
| 366 | |
|---|
| 367 | #dashboard-widgets #dashboard_quick_press form p.submit #save-post { |
|---|
| 368 | - margin: 0 1em 0 0; |
|---|
| 369 | + margin: 0 0.7em 0 1px; |
|---|
| 370 | } |
|---|
| 371 | |
|---|
| 372 | #dashboard-widgets #dashboard_quick_press form p.submit #publish { |
|---|
| 373 | Index: wp-admin/css/colors-classic.css |
|---|
| 374 | =================================================================== |
|---|
| 375 | --- wp-admin/css/colors-classic.css (revision 21940) |
|---|
| 376 | +++ wp-admin/css/colors-classic.css (working copy) |
|---|
| 377 | @@ -387,15 +387,15 @@ |
|---|
| 378 | .submit input, |
|---|
| 379 | input[type=button], |
|---|
| 380 | input[type=submit] { |
|---|
| 381 | - background: #ececec; |
|---|
| 382 | + background: #f3f3f3; |
|---|
| 383 | background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); |
|---|
| 384 | background-image: -webkit-linear-gradient(top, #fff, #eee); |
|---|
| 385 | background-image: -moz-linear-gradient(top, #fff, #eee); |
|---|
| 386 | background-image: -o-linear-gradient(top, #fff, #eee); |
|---|
| 387 | background-image: linear-gradient(to bottom, #fff, #eee); |
|---|
| 388 | border-color: #ccc; |
|---|
| 389 | - -webkit-box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); |
|---|
| 390 | - box-shadow: inset 0 0 1px 1px rgba(255,255,255, 0.9); |
|---|
| 391 | + -webkit-box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9); |
|---|
| 392 | + box-shadow: inset 0 0 1px 2px rgba(255,255,255, 0.9); |
|---|
| 393 | color: #464646; |
|---|
| 394 | text-shadow: 1px 1px 0 #fff; |
|---|
| 395 | } |
|---|
| 396 | @@ -413,21 +413,35 @@ |
|---|
| 397 | .button-secondary:focus, |
|---|
| 398 | .submit input.focus, |
|---|
| 399 | .submit input:focus, |
|---|
| 400 | +input[type=button].focus, |
|---|
| 401 | input[type=button]:focus, |
|---|
| 402 | -input[type=submit].focus, |
|---|
| 403 | input[type=submit]:focus { |
|---|
| 404 | - background: #ececec; |
|---|
| 405 | - background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee)); |
|---|
| 406 | - background-image: -webkit-linear-gradient(top, #fff, #eee); |
|---|
| 407 | - background-image: -moz-linear-gradient(top, #fff, #eee); |
|---|
| 408 | - background-image: -o-linear-gradient(top, #fff, #eee); |
|---|
| 409 | - background-image: linear-gradient(to bottom, #fff, #eee); |
|---|
| 410 | + background: #f3f3f3; |
|---|
| 411 | + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3)); |
|---|
| 412 | + background-image: -webkit-linear-gradient(top, #fff, #f3f3f3); |
|---|
| 413 | + background-image: -moz-linear-gradient(top, #fff, #f3f3f3); |
|---|
| 414 | + background-image: -o-linear-gradient(top, #fff, #f3f3f3); |
|---|
| 415 | + background-image: linear-gradient(to bottom, #fff, #f3f3f3); |
|---|
| 416 | border-color: #bbb; |
|---|
| 417 | - -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 418 | - box-shadow: 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 419 | + -webkit-box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 420 | + box-shadow: inset 0 0 1px 2px #fff, 0px 1px 1px rgba(0,0,0,.1); |
|---|
| 421 | color: #000; |
|---|
| 422 | } |
|---|
| 423 | |
|---|
| 424 | +.button.focus, |
|---|
| 425 | +.button:focus, |
|---|
| 426 | +.button-secondary.focus, |
|---|
| 427 | +.button-secondary:focus, |
|---|
| 428 | +.submit input.focus, |
|---|
| 429 | +.submit input:focus, |
|---|
| 430 | +input[type=button].focus, |
|---|
| 431 | +input[type=button]:focus, |
|---|
| 432 | +input[type=submit]:focus { |
|---|
| 433 | + border-color: #999; |
|---|
| 434 | + -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2); |
|---|
| 435 | + box-shadow: 1px 1px 1px rgba(0,0,0,.2); |
|---|
| 436 | +} |
|---|
| 437 | + |
|---|
| 438 | .button.active, |
|---|
| 439 | .button:active, |
|---|
| 440 | .button-secondary.active, |
|---|
| 441 | @@ -448,17 +462,6 @@ |
|---|
| 442 | box-shadow: inset 1px 1px 0 rgba(50,50,50,0.1); |
|---|
| 443 | } |
|---|
| 444 | |
|---|
| 445 | -.button.focus, |
|---|
| 446 | -.button:focus, |
|---|
| 447 | -.button-secondary.focus, |
|---|
| 448 | -.button-secondary:focus, |
|---|
| 449 | -.submit input.focus, |
|---|
| 450 | -.submit input:focus, |
|---|
| 451 | -input[type=button].focus, |
|---|
| 452 | -input[type=submit]:focus { |
|---|
| 453 | - border-color: #aaa; |
|---|
| 454 | -} |
|---|
| 455 | - |
|---|
| 456 | input.button-primary, |
|---|
| 457 | button.button-primary, |
|---|
| 458 | a.button-primary { |
|---|
| 459 | @@ -498,6 +501,15 @@ |
|---|
| 460 | text-shadow: -1px -1px 0 rgba(0,0,0,0.3); |
|---|
| 461 | } |
|---|
| 462 | |
|---|
| 463 | +input.button-primary.focus, |
|---|
| 464 | +input.button-primary:focus, |
|---|
| 465 | +button.button-primary:focus, |
|---|
| 466 | +a.button-primary:focus { |
|---|
| 467 | + border-color: #0e3950; |
|---|
| 468 | + -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,.4); |
|---|
| 469 | + box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,.4); |
|---|
| 470 | +} |
|---|
| 471 | + |
|---|
| 472 | input.button-primary.active, |
|---|
| 473 | input.button-primary:active, |
|---|
| 474 | button.button-primary:active, |
|---|
| 475 | @@ -514,13 +526,6 @@ |
|---|
| 476 | box-shadow: inset 1px 1px 0 rgba(0,0,0,0.1); |
|---|
| 477 | } |
|---|
| 478 | |
|---|
| 479 | -input.button-primary.focus, |
|---|
| 480 | -input.button-primary:focus, |
|---|
| 481 | -button.button-primary:focus, |
|---|
| 482 | -a.button-primary:focus { |
|---|
| 483 | - border-color: #124560; |
|---|
| 484 | -} |
|---|
| 485 | - |
|---|
| 486 | .button-disabled, |
|---|
| 487 | .button[disabled], |
|---|
| 488 | .button:disabled, |
|---|
| 489 | @@ -542,6 +547,11 @@ |
|---|
| 490 | box-shadow: none !important; |
|---|
| 491 | } |
|---|
| 492 | |
|---|
| 493 | +.button-primary-disabled:hover, |
|---|
| 494 | +.button-primary[disabled]:hover { |
|---|
| 495 | + text-shadow: none; |
|---|
| 496 | +} |
|---|
| 497 | + |
|---|
| 498 | a:hover, |
|---|
| 499 | a:active { |
|---|
| 500 | color: #d54e21; |
|---|
| 501 | Index: wp-admin/css/customize-controls.css |
|---|
| 502 | =================================================================== |
|---|
| 503 | --- wp-admin/css/customize-controls.css (revision 21940) |
|---|
| 504 | +++ wp-admin/css/customize-controls.css (working copy) |
|---|
| 505 | @@ -157,7 +157,7 @@ |
|---|
| 506 | |
|---|
| 507 | #customize-header-actions .button-primary { |
|---|
| 508 | float: right; |
|---|
| 509 | - margin-top: 11px; |
|---|
| 510 | + margin-top: 10px; |
|---|
| 511 | } |
|---|
| 512 | |
|---|
| 513 | #customize-header-actions img { |
|---|
| 514 | Index: wp-admin/custom-background.php |
|---|
| 515 | =================================================================== |
|---|
| 516 | --- wp-admin/custom-background.php (revision 21940) |
|---|
| 517 | +++ wp-admin/custom-background.php (working copy) |
|---|
| 518 | @@ -260,7 +260,7 @@ |
|---|
| 519 | <input type="file" id="upload" name="import" /> |
|---|
| 520 | <input type="hidden" name="action" value="save" /> |
|---|
| 521 | <?php wp_nonce_field( 'custom-background-upload', '_wpnonce-custom-background-upload' ); ?> |
|---|
| 522 | - <?php submit_button( __( 'Upload' ), 'button', 'submit', false ); ?> |
|---|
| 523 | + <?php submit_button( __( 'Upload' ), 'tiny', 'submit', false ); ?> |
|---|
| 524 | </p> |
|---|
| 525 | <?php |
|---|
| 526 | $image_library_url = get_upload_iframe_src( 'image', null, 'library' ); |
|---|