Provide a default generic avatar icon in the My Account menu if avatars are disabled, ensuring that the link is visible at responsive sizes. See #25858.
git-svn-id: https://develop.svn.wordpress.org/trunk@26744 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
98b9246261
commit
5112fe565a
@ -260,7 +260,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar .ab-icon,
|
||||
#wpadminbar .ab-icon:before,
|
||||
#wpadminbar .ab-item:before {
|
||||
#wpadminbar .ab-item:before,
|
||||
#wpadminbar .ab-item:after {
|
||||
color: $menu-icon;
|
||||
}
|
||||
|
||||
@ -282,6 +283,7 @@ ul#adminmenu > li.current > a.current:after {
|
||||
|
||||
#wpadminbar li:hover .ab-icon:before,
|
||||
#wpadminbar li:hover .ab-item:before,
|
||||
#wpadminbar li:hover .ab-item:after,
|
||||
#wpadminbar li:hover #adminbarsearch:before {
|
||||
color: $menu-highlight-icon;
|
||||
}
|
||||
@ -324,6 +326,8 @@ ul#adminmenu > li.current > a.current:after {
|
||||
#wpadminbar li .ab-item:focus:before,
|
||||
#wpadminbar li.hover .ab-icon:before,
|
||||
#wpadminbar li.hover .ab-item:before,
|
||||
#wpadminbar li:hover .ab-item:after,
|
||||
#wpadminbar li.hover .ab-item:after,
|
||||
#wpadminbar li:hover #adminbarsearch:before {
|
||||
color: $menu-submenu-focus-text;
|
||||
}
|
||||
|
@ -232,6 +232,11 @@
|
||||
#wpadminbar .ab-item:before,
|
||||
#wpadminbar #adminbarsearch:before {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#wpadminbar .ab-icon:before,
|
||||
#wpadminbar .ab-item:before,
|
||||
#wpadminbar #adminbarsearch:before {
|
||||
position: relative;
|
||||
-moz-transition: all .1s ease-in-out;
|
||||
-webkit-transition: all .1s ease-in-out;
|
||||
@ -356,6 +361,19 @@
|
||||
min-width: 198px;
|
||||
}
|
||||
|
||||
#wp-admin-bar-my-account > .ab-item:before {
|
||||
content: "\f110";
|
||||
top: 2px;
|
||||
float: right;
|
||||
margin-left: 6px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#wp-admin-bar-my-account.with-avatar > .ab-item:before {
|
||||
display: none;
|
||||
content: none;
|
||||
}
|
||||
|
||||
#wp-admin-bar-my-account.with-avatar > ul {
|
||||
min-width: 270px;
|
||||
}
|
||||
@ -784,7 +802,8 @@
|
||||
/* My Sites and "Site Title" menu */
|
||||
#wpadminbar #wp-admin-bar-my-sites > .ab-item,
|
||||
#wpadminbar #wp-admin-bar-site-name > .ab-item,
|
||||
#wpadminbar #wp-admin-bar-edit > .ab-item {
|
||||
#wpadminbar #wp-admin-bar-edit > .ab-item,
|
||||
#wpadminbar #wp-admin-bar-my-account > .ab-item {
|
||||
text-indent: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
@ -803,13 +822,14 @@
|
||||
|
||||
#wpadminbar #wp-admin-bar-edit > .ab-item:before,
|
||||
#wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
|
||||
#wpadminbar #wp-admin-bar-site-name > .ab-item:before {
|
||||
#wpadminbar #wp-admin-bar-site-name > .ab-item:before,
|
||||
#wpadminbar #wp-admin-bar-my-account > .ab-item:before {
|
||||
display: block;
|
||||
text-indent: 0;
|
||||
font: normal 32px/1 'dashicons';
|
||||
speak: none;
|
||||
top: 7px;
|
||||
width: 50px;
|
||||
width: 55px;
|
||||
text-align: center;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
Loading…
Reference in New Issue
Block a user