Ticket #25968: 25968.diff
File 25968.diff, 2.4 KB (added by , 11 years ago) |
---|
-
wp-admin/css/wp-admin.css
10960 10960 font-size: 14px; 10961 10961 } 10962 10962 10963 .wp-core-ui .button,10964 .wp-core-ui .button:active, /* Override non-responsive active styles in buttons.css */10965 input#publish,10966 input#save-post,10967 a.preview {10968 padding: 10px 14px;10969 line-height: 1;10970 font-size: 14px;10971 vertical-align: middle;10972 height: auto;10973 margin-bottom: 4px;10974 }10975 10976 #media-upload.wp-core-ui .button {10977 padding: 0 10px 1px;10978 height: 24px;10979 line-height: 22px;10980 font-size: 13px;10981 }10982 10983 10963 .wrap .add-new-h2, .wrap .add-new-h2:active { 10984 10964 padding: 10px 15px; 10985 10965 font-size: 14px; … … 11234 11214 line-height: 280%; 11235 11215 } 11236 11216 11237 .wp-core-ui .save-post-status.button {11238 position: relative;11239 margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */11240 }11241 11242 11217 .wp-core-ui .save-post-visibility, 11243 11218 .wp-core-ui .save-timestamp { 11244 11219 vertical-align: middle; -
wp-includes/css/buttons.css
27 27 2.0 - Default Button Style 28 28 3.0 - Primary Button Style 29 29 4.0 - Button Groups 30 5.0 - Responsive Button Styles 30 31 31 32 ---------------------------------------------------------------------------- */ 32 33 … … 269 270 .wp-core-ui .button-group > .button:last-child { 270 271 border-radius: 0 3px 3px 0; 271 272 } 273 274 /* ---------------------------------------------------------------------------- 275 5.0 - Responsive Button Styles 276 ---------------------------------------------------------------------------- */ 277 278 @media screen and ( max-width: 782px ) { 279 280 .wp-core-ui .button, 281 .wp-core-ui .button:active, /* Override non-responsive active styles in buttons.css */ 282 input#publish, 283 input#save-post, 284 a.preview { 285 padding: 10px 14px; 286 line-height: 1; 287 font-size: 14px; 288 vertical-align: middle; 289 height: auto; 290 margin-bottom: 4px; 291 } 292 293 #media-upload.wp-core-ui .button { 294 padding: 0 10px 1px; 295 height: 24px; 296 line-height: 22px; 297 font-size: 13px; 298 } 299 300 /* Publish Metabox Options */ 301 .wp-core-ui .save-post-status.button { 302 position: relative; 303 margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */ 304 } 305 306 307 }