Skip to content
Open
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
26 changes: 18 additions & 8 deletions src/wp-admin/css/themes.css
Original file line number Diff line number Diff line change
Expand Up @@ -1086,9 +1086,7 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {

.upload-theme .wp-upload-form,
.upload-plugin .wp-upload-form {
background: #f6f7f7;
border: 1px solid #c3c4c7;
padding: 30px;
position: relative;
margin: 30px auto;
display: inline-flex;
justify-content: space-between;
Expand All @@ -1097,7 +1095,16 @@ body.folded .theme-browser ~ .theme-overlay .theme-wrap {

.upload-theme .wp-upload-form input[type="file"],
.upload-plugin .wp-upload-form input[type="file"] {
margin-right: 10px;
background: #f6f7f7;
border: 1px solid #c3c4c7;
margin: 0;
padding: 30px 128px 30px 30px;
}

.upload-plugin .wp-upload-form input[type=submit],
.upload-theme .wp-upload-form input[type=submit] {
position: absolute;
right: 30px;
}

.upload-theme .install-help,
Expand Down Expand Up @@ -2008,12 +2015,15 @@ body.full-overlay-active {
padding-bottom: 4px;
}

.upload-theme .wp-upload-form,
.upload-plugin .wp-upload-form {
display: block;
.upload-plugin .wp-upload-form input[type=file],
.upload-theme .wp-upload-form input[type=file] {
padding: 30px 30px 80px;
}

:is(.upload-theme, .upload-plugin) .wp-upload-form input[type="submit"] {
margin-top: 10px;
right: unset;
left: 30px;
bottom: 30px;
margin: 10px 0 0;
}
}
Loading