tweak, tweak, tweak, tweak, tweak the CSS
parent
2400c36b46
commit
eff5a22ed0
|
@ -29,11 +29,11 @@
|
|||
{% for ungluer in ungluers %}
|
||||
<li class="first"><a href="{% url supporter supporter_username=ungluer %}">
|
||||
{% if ungluer.profile.pic_url %}
|
||||
<img src="{{ungluer.profile.pic_url}}" height="30" width="30" alt="{{ungluer}}" title="{{ungluer}}" />
|
||||
<img src="{{ungluer.profile.pic_url}}" height="30" width="30" alt="{{ungluer}}" title="{{ungluer}}" /></a>
|
||||
{% else %}
|
||||
<img src="/static/images/header/avatar.png" height="30" width="30" alt="Generic Ungluer Avatar" />
|
||||
<img src="/static/images/header/avatar.png" height="30" width="30" alt="Generic Ungluer Avatar" /></a>
|
||||
{% endif %}
|
||||
<span class="ungluer-name">{{ungluer|truncatechars:20}}</span>
|
||||
<a href="{% url supporter supporter_username=ungluer %}"><span class="ungluer-name">{{ungluer|truncatechars:20}}</span>
|
||||
</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
|
@ -320,6 +320,14 @@ ul.ungluingwhat li > div {
|
|||
ul.ungluingwhat div.user-avatar {
|
||||
width: 43px;
|
||||
}
|
||||
ul.ungluingwhat div.user-avatar img {
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
ul.ungluingwhat .user-book-thumb {
|
||||
width: 29px;
|
||||
}
|
||||
|
|
|
@ -373,6 +373,9 @@ a.readon span {
|
|||
}
|
||||
#js-leftcol ul.level2 li img {
|
||||
vertical-align: middle;
|
||||
-moz-border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
#js-leftcol ul.level2 li .ungluer-name {
|
||||
height: 30px;
|
||||
|
|
|
@ -192,6 +192,10 @@ ul.ungluingwhat {
|
|||
|
||||
div.user-avatar {
|
||||
width:43px;
|
||||
|
||||
img {
|
||||
.one-border-radius(5px);
|
||||
}
|
||||
}
|
||||
|
||||
.user-book-thumb {
|
||||
|
|
|
@ -338,6 +338,7 @@ a.readon {
|
|||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
.one-border-radius(5px);
|
||||
}
|
||||
|
||||
.ungluer-name {
|
||||
|
|
Loading…
Reference in New Issue