Give the view links in post/page listings the view class rather than the edit class, fixes #4058 props rgovostes

git-svn-id: https://develop.svn.wordpress.org/trunk@5927 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood
2007-08-23 18:04:15 +00:00
parent ca4e75cb57
commit 91ee356102
3 changed files with 5 additions and 5 deletions

View File

@@ -103,14 +103,14 @@ thead, .thead {
padding: 1em;
}
a.edit, a.delete, a.edit:hover, a.delete:hover {
a.view, a.edit, a.delete, a.view:hover, a.edit:hover, a.delete:hover {
border-bottom: none;
display: block;
padding: 5px 0;
text-align: center;
}
a.edit:hover {
a.view:hover, a.edit:hover {
background: #ccc;
color: #036;
}