Theme list table style improvements. Make 'delete' link red and separate from other actions. New action separators. see #20403.

git-svn-id: https://develop.svn.wordpress.org/trunk@20455 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith
2012-04-12 21:10:40 +00:00
parent 1b6cda0c48
commit 68ce88b380
3 changed files with 48 additions and 8 deletions

View File

@@ -4312,6 +4312,40 @@ h3.available-themes {
.available-theme .action-links {
margin-top: 10px;
overflow: hidden;
}
.available-theme .action-links li {
float: left;
padding-right: 10px;
margin-right: 10px;
border-right: 1px solid #dfdfdf;
}
.available-theme .action-links li:last-child {
padding-right: 0;
margin-right: 0;
border-right: 0;
}
.available-theme .action-links .delete-theme {
float: right;
margin-right: 0;
}
.available-theme .action-links .delete-theme a {
color: red;
padding: 2px;
}
.available-theme .action-links .delete-theme a:hover {
background: red;
color: #fff;
text-decoration: none;
}
.available-theme .action-links p {
float: left;
}
#current-theme {