Themes: Make it possible to delete broken themes.

props ideag, obenland.
fixes #28165.

git-svn-id: https://develop.svn.wordpress.org/trunk@29924 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90)
2014-10-16 19:45:26 +00:00
parent a3e0c08f2f
commit 3d6d32d9e6
3 changed files with 42 additions and 11 deletions

View File

@@ -580,11 +580,9 @@ body.folded .theme-overlay .theme-wrap {
margin-bottom: 5px;
}
.broken-themes a.delete-theme,
.theme-overlay .theme-actions .delete-theme {
color: #a00;
position: absolute;
right: 10px;
bottom: 5px;
text-decoration: none;
border-color: transparent;
-webkit-box-shadow: none;
@@ -592,6 +590,14 @@ body.folded .theme-overlay .theme-wrap {
background: transparent;
}
.theme-overlay .theme-actions .delete-theme {
position: absolute;
right: 10px;
bottom: 5px;
}
.broken-themes a.delete-theme:hover,
.broken-themes a.delete-theme:focus,
.theme-overlay .theme-actions .delete-theme:hover,
.theme-overlay .theme-actions .delete-theme:focus {
background: #d54e21;
@@ -1729,4 +1735,8 @@ body.full-overlay-active {
.available-theme .action-links .delete-theme a {
padding: 0;
}
.broken-themes table {
width: 100%;
}
}