Make WordPress Core

Ticket #34556: 34556.patch

File 34556.patch, 513 bytes (added by tyxla, 10 years ago)

Fix the box-sizing of the input, textarea and select fields in the edit attachment frame.

  • src/wp-admin/css/media.css

     
    627627        width: 100%;
    628628}
    629629
     630.edit-attachment-frame input,
     631.edit-attachment-frame select,
     632.edit-attachment-frame textarea {
     633    -webkit-box-sizing: border-box;
     634    -moz-box-sizing: border-box;
     635    box-sizing: border-box;
     636}
     637
    630638.edit-attachment-frame .edit-media-header {
    631639        overflow: hidden;
    632640}