Prevent delete theme link from bumping against theme action links. If it doesn't fit, it doesn't fit, man. props SergeyBiryukov, fixes #20918.

git-svn-id: https://develop.svn.wordpress.org/trunk@21067 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2012-06-12 17:11:09 +00:00
parent 15002daafb
commit 52340fa233
2 changed files with 12 additions and 0 deletions

View File

@ -1180,6 +1180,11 @@ h3.available-themes {
border-left: 1px solid #dfdfdf;
}
.available-theme .action-links li {
padding-left: 8px;
margin-left: 8px;
}
#current-theme .theme-info li:last-child,
.theme-options li:last-child,
.available-theme .action-links li:last-child {
@ -1191,6 +1196,7 @@ h3.available-themes {
.available-theme .action-links .delete-theme {
float: left;
margin-left: 0;
margin-right: 8px;
}
.available-theme .action-links p {

View File

@ -4441,6 +4441,11 @@ h3.available-themes {
border-right: 1px solid #dfdfdf;
}
.available-theme .action-links li {
padding-right: 8px;
margin-right: 8px;
}
#current-theme .theme-info li:last-child,
.theme-options li:last-child,
.available-theme .action-links li:last-child {
@ -4451,6 +4456,7 @@ h3.available-themes {
.available-theme .action-links .delete-theme {
float: right;
margin-left: 8px;
margin-right: 0;
}