mirror of https://github.com/zulip/zulip.git
Make left sidebar gravatar more consistent with our visual styling.
(imported from commit 0a859184d89fbcfb3ab4e7311f3b86a2f9d89d88)
This commit is contained in:
parent
b7694e5109
commit
9d62c49c83
|
@ -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>
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue