Make left sidebar gravatar more consistent with our visual styling.

(imported from commit 0a859184d89fbcfb3ab4e7311f3b86a2f9d89d88)
This commit is contained in:
Waseem Daher 2013-06-12 11:49:41 -04:00
parent b7694e5109
commit 9d62c49c83
2 changed files with 9 additions and 4 deletions

View File

@ -1,9 +1,9 @@
<div class="row-fluid">
<div class="span2 sidebar-nav affix" id="left-sidebar">
<div class="upper_sidebar">
<div class="brand">
<img class="img-rounded gravatar-profile"
src="{{ avatar_url }}&s=60" />
<div class="brand">
<div class="gravatar-profile"
style="background-image: url('{{ avatar_url }}&s=60');"></div>
<span id="my_information">
<span class="my_fullname">{{ user_profile.full_name }}</span><br />
<span class="my_email">{{ user_profile.email }}</span>

View File

@ -160,7 +160,12 @@ a:hover code {
}
#left-sidebar .gravatar-profile {
display: table-cell;
width: 35px;
height: 35px;
background-size: 35px 35px;
background-repeat: none;
border-radius: 35px;
border: 1px solid #CCC;
}
#my_information {