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
3 changes: 1 addition & 2 deletions src/wp-admin/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,6 @@ a#remove-post-thumbnail:hover,

#publishing-action .spinner {
float: none;
margin-top: 5px;
}

#misc-publishing-actions {
Expand Down Expand Up @@ -2460,7 +2459,7 @@ h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
filter: alpha(opacity=70);
width: 20px;
height: 20px;
margin: 4px 10px 0;
margin: 10px 10px 0; /* Vertically center 20px spinner in 40px button height: ( 40 - 20 ) / 2 */
}

.spinner.is-active,
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/css/edit.css
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,7 @@ p.popular-tags a {

#addtag .spinner {
float: none;
vertical-align: top;
vertical-align: middle;
}

#edittag {
Expand Down
1 change: 1 addition & 0 deletions src/wp-admin/css/media.css
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@
float: none;
left: 105px;
position: absolute;
top: 10px; /* Vertically center 20px spinner in 40px input: ( 40 - 20 ) / 2 */
}

.find-box-search,
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/css/nav-menus.css
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ input.bulk-select-switcher:focus + .bulk-select-button-label {

.quick-search-wrap .spinner {
float: none;
margin: -3px -10px 0 0;
margin: 10px -10px 0 0;
}

.nav-menus-php .list-wrap {
Expand Down
15 changes: 7 additions & 8 deletions src/wp-admin/css/widgets.css
Original file line number Diff line number Diff line change
Expand Up @@ -500,18 +500,17 @@ div#widgets-right .closed .widgets-sortables {
margin-bottom: 0;
}

.sidebar-name .spinner,
.remove-inactive-widgets .spinner {
float: none;
position: relative;
top: -2px;
margin: -5px 5px;
}

.sidebar-name .spinner {
float: none;
position: absolute;
top: 18px;
right: 30px;
margin: -5px 5px;
}

.remove-inactive-widgets .spinner {
float: none;
margin: 10px 5px 0;
}

/* Dragging a widget over a closed sidebar */
Expand Down
Loading