Merge branch 'master' of https://github.com/wpopal/opal-estate-pro
This commit is contained in:
commit
1b71de68eb
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,3 @@
|
||||
.idea/
|
||||
.sass-cache/
|
||||
.node_modules/**
|
||||
node_modules/**
|
@ -3640,9 +3640,15 @@ header#masthead {
|
||||
.opalestate-user-greeting .popup-head a {
|
||||
color: #FFF;
|
||||
text-align: right;
|
||||
float: right;
|
||||
position: relative; }
|
||||
.opalestate-user-greeting .popup-head a img {
|
||||
.opalestate-user-greeting .popup-head a .opalestate-user-image {
|
||||
position: relative;
|
||||
width: 40px;
|
||||
height: 40px; }
|
||||
.opalestate-user-greeting .popup-head a .opalestate-user-image img {
|
||||
min-height: 40px;
|
||||
object-fit: cover;
|
||||
border-radius: 50%; }
|
||||
.opalestate-user-greeting .popup-head a i {
|
||||
padding: 12px;
|
||||
|
@ -85,11 +85,17 @@
|
||||
.popup-head a {
|
||||
color:$white;
|
||||
text-align:right;
|
||||
float:right;
|
||||
position:relative;
|
||||
.opalestate-user-image {
|
||||
position: relative;
|
||||
@include size(40px, 40px);
|
||||
img {
|
||||
width:40px;
|
||||
min-height: 40px;
|
||||
object-fit: cover;
|
||||
border-radius:50%;
|
||||
}
|
||||
position:relative;
|
||||
}
|
||||
i {
|
||||
padding:12px;
|
||||
border-radius:50%;
|
||||
|
@ -53,8 +53,11 @@ get_header( 'no-sidebar' );
|
||||
<li>
|
||||
<div class="opalestate-user-greeting opalestate-popup hover-align-right">
|
||||
<div class="popup-head"><a href="#"><?php $user_id = get_current_user_id(); ?>
|
||||
<img src="<?php echo OpalEstate_User::get_author_picture( $user_id ); ?>" alt="<?php esc_attr_e( 'User Avatar', 'opalestate-pro' ); ?>"/>
|
||||
<div class="opalestate-user-image">
|
||||
<img src="<?php echo esc_url( OpalEstate_User::get_author_picture( $user_id ) ); ?>" alt="<?php esc_attr_e( 'Avatar image', 'opalestate-pro' ); ?>"/>
|
||||
</div>
|
||||
<span class="notify active"></span>
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="popup-body">
|
||||
|
Loading…
Reference in New Issue
Block a user