Adding bio to summary
This commit is contained in:
parent
03a0588073
commit
c5556a0d50
|
@ -1,8 +1,12 @@
|
||||||
<div class="thumbnail col-lg-1 col-sm-2 col-xs-4">
|
<div class="thumbnail col-lg-1 col-sm-2 col-xs-4">
|
||||||
<%= image_tag user.gravatar_url(:default => "http://members.heatsynclabs.org/pirate.png") %>
|
<%= link_to (image_tag user.gravatar_url(:default => "http://members.heatsynclabs.org/pirate.png") ), user %>
|
||||||
<span class="badges">
|
<span class="badges">
|
||||||
<%= render partial: 'badges', locals: {user: user} %>
|
<%= render partial: 'badges', locals: {user: user} %>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<h4><%= link_to user.name, user %></h4>
|
<div class="bio">
|
||||||
|
<small><%= strip_tags(user.current_skills).truncate(50) %></small>
|
||||||
|
</div>
|
||||||
|
<h4><%= link_to user.name, user %>
|
||||||
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
.users .thumbnail {
|
.users .fthumbnail {
|
||||||
height: 200px;
|
height: 250px;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.users .badges { position: absolute; bottom: 3em; }
|
.users .badges {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
.users .badges img {
|
.users .badges img {
|
||||||
float: left;
|
float: left;
|
||||||
width: 24px;
|
width: 24px;
|
||||||
|
@ -12,7 +16,14 @@
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
.users .thumbnail h4 { position: absolute; bottom: 1px; margin-bottom: 1px; }
|
.users .bio, .users .thumbnail h4 {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
height: 3em;
|
||||||
|
}
|
||||||
|
.users .thumbnail h4 {
|
||||||
|
height: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user