Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/js/_enqueues/admin/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ jQuery( function($) {
revert_e = $el.html();

buttons.html(
'<button type="button" class="save button button-small">' + __( 'OK' ) + '</button> ' +
'<button type="button" class="save button button-compact">' + __( 'OK' ) + '</button> ' +
'<button type="button" class="cancel button-link">' + __( 'Cancel' ) + '</button>'
);

Expand Down
7 changes: 5 additions & 2 deletions src/wp-admin/css/edit.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ input#link_url {
#edit-slug-box .cancel {
margin-right: 10px;
padding: 0;
font-size: 11px;
}

#comment-link-box {
Expand All @@ -140,7 +139,7 @@ input#link_url {
#editable-post-name input {
font-size: 13px;
font-weight: 400;
height: 24px;
min-height: 32px;
margin: 0;
width: 16em;
}
Expand Down Expand Up @@ -1068,6 +1067,10 @@ form#tags-filter {
#edit-slug-box {
padding: 0;
}

#editable-post-name input {
min-height: 40px;
}
}

@media only screen and (max-width: 1004px) {
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/css/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ TABLE OF CONTENTS:

.wp-core-ui .button,
.wp-core-ui .button.button-large,
.wp-core-ui .button.button-compact,
.wp-core-ui .button.button-small,
input#publish,
input#save-post,
Expand Down
Loading