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/wp-admin/css/admin-menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ ul#adminmenu > li.current > a.current:after {
padding: 0 5px;
min-width: 18px;
height: 18px;
border-radius: 9px;
border-radius: 8px;
background-color: #d63638;
color: #fff;
font-size: 11px;
Expand Down
6 changes: 3 additions & 3 deletions src/wp-admin/css/customize-controls.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ body:not(.ready) #customize-save-button-wrapper .save {
}
#customize-save-button-wrapper .save {
float: left;
border-radius: 3px;
border-radius: 2px;
box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */
margin-top: 0;
}

#customize-save-button-wrapper .save.has-next-sibling {
border-radius: 3px 0 0 3px;
border-radius: 2px 0 0 2px;
}

#customize-sidebar-outer-content {
Expand Down Expand Up @@ -162,7 +162,7 @@ body:not(.ready) #customize-save-button-wrapper .save {

#publish-settings {
text-indent: 0;
border-radius: 0 3px 3px 0;
border-radius: 0 2px 2px 0;
padding-left: 0;
padding-right: 0;
box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/css/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,7 @@ table.form-table td .updated p {
cursor: move;
color: #2c3338;
background: #dcdcde;
border-radius: 5px;
border-radius: 4px;
border: 1px solid #c3c4c7;
font-style: normal;
line-height: 16px;
Expand Down
8 changes: 4 additions & 4 deletions src/wp-admin/css/list-tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
padding: 0 8px;
min-width: 24px;
height: 2em;
border-radius: 5px;
border-radius: 4px;
background-color: #646970;
color: #fff;
font-size: 11px;
Expand Down Expand Up @@ -98,7 +98,7 @@
min-width: 7px;
height: 17px;
border: 2px solid #fff;
border-radius: 11px;
border-radius: 12px;
background: #d63638;
color: #fff;
font-size: 9px;
Expand Down Expand Up @@ -396,7 +396,7 @@ table.media .column-title .filename {
transform: translate(-50%, -100%);
background: #000;
color: #fff;
border-radius: 5px;
border-radius: 4px;
margin: 0;
padding: 2px 5px;
}
Expand Down Expand Up @@ -1196,7 +1196,7 @@ ul.cat-checklist input[name="post_category[]"]:indeterminate::before {
height: 26px;
margin: 0 0 0 -26px;
text-align: center;
border-radius: 3px;
border-radius: 2px;
}

#bulk-titles .ntdelbutton:before {
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 @@ -144,7 +144,7 @@ ul.add-menu-item-tabs li {
border: 1px solid #dcdcde;
margin: 0;
cursor: pointer;
border-radius: 3px;
border-radius: 2px;
white-space: nowrap;
box-sizing: border-box;
}
Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/css/site-icon.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

.site-icon-preview .app-icon-preview {
aspect-ratio: 1/1;
border-radius: 10px;
border-radius: 8px;
box-shadow: 0 1px 5px 0 var(--site-icon-shadow-3);
flex-shrink: 0;
width: 100%;
Expand Down
10 changes: 5 additions & 5 deletions src/wp-admin/css/themes.css
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ body.js .theme-browser.search-loading {
font-weight: 600;
padding: 15px 12px;
text-align: center;
border-radius: 3px;
border-radius: 2px;
border: none;
transition: opacity 0.1s ease-in-out;
cursor: pointer;
Expand Down Expand Up @@ -1373,31 +1373,31 @@ div#custom-background-image img {
}

.background-position-control .button-group:first-child > label:first-child .button {
border-radius: 3px 0 0;
border-radius: 2px 0 0;
}

.background-position-control .button-group:first-child > label:first-child .dashicons {
transform: rotate( 45deg );
}

.background-position-control .button-group:first-child > label:last-child .button {
border-radius: 0 3px 0 0;
border-radius: 0 2px 0 0;
}

.background-position-control .button-group:first-child > label:last-child .dashicons {
transform: rotate( -45deg );
}

.background-position-control .button-group:last-child > label:first-child .button {
border-radius: 0 0 0 3px;
border-radius: 0 0 0 2px;
}

.background-position-control .button-group:last-child > label:first-child .dashicons {
transform: rotate( -45deg );
}

.background-position-control .button-group:last-child > label:last-child .button {
border-radius: 0 0 3px;
border-radius: 0 0 2px;
}

.background-position-control .button-group:last-child > label:last-child .dashicons {
Expand Down
Loading