Remove gradient for invalid menu items. props melchoyce. fixes #26144.

Built from https://develop.svn.wordpress.org/trunk@26322


git-svn-id: http://core.svn.wordpress.org/trunk@26225 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-11-22 07:36:10 +00:00
parent a4390517ca
commit 8a51dfff7d
4 changed files with 4 additions and 12 deletions

View File

@ -9084,11 +9084,7 @@ body.interim-login {
#menu-to-edit .menu-item-invalid .menu-item-handle {
background: #f6c9cc;
background-image: -webkit-gradient(linear, right bottom, right top, from(#f6c9cc), to(#fdf8ff));
background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
border-color: #f1acb1;
}
.no-js .menu-item-edit-active .item-edit {

File diff suppressed because one or more lines are too long

View File

@ -9088,11 +9088,7 @@ body.interim-login {
#menu-to-edit .menu-item-invalid .menu-item-handle {
background: #f6c9cc;
background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
border-color: #f1acb1;
}
.no-js .menu-item-edit-active .item-edit {

File diff suppressed because one or more lines are too long