Mark menu items tied to invalid taxonomies and post types as invalid. props ocean90, see #13958.

git-svn-id: https://develop.svn.wordpress.org/trunk@18260 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2011-06-11 00:55:48 +00:00
parent 64b6104534
commit c24e4daf5a
5 changed files with 52 additions and 5 deletions
File diff suppressed because one or more lines are too long
+10
View File
@@ -387,6 +387,16 @@ body {
-khtml-border-radius: 3px;
}
#menu-to-edit .menu-item-invalid .menu-item-handle {
background-color: #f6c9cc; /* Fallback */
background-image: -ms-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* IE10 */
background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Firefox */
background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* Opera */
background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff)); /* old Webkit */
background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff); /* new Webkit */
background-image: linear-gradient(bottom, #f6c9cc, #fdf8ff); /* proposed W3C Markup */
}
.menu-item-edit-active .menu-item-handle {
-moz-border-radius: 3px 3px 0 0;
-webkit-border-bottom-right-radius: 0;