\r
/* Basic hovercard */\r
.basic-content {\r
- padding: 9px 14px;\r
+ padding: 9px;\r
}\r
.basic-image-wrapper {\r
background: #fff;\r
.image-wrapper.medium > a img {\r
height: 80px;\r
width: 80px;\r
+ margin-bottom: 0;\r
}\r
.image-wrapper.large {\r
max-width: 140px;\r
border-radius: 4px;\r
/*max-width: 250px;*/\r
max-width: 400px;\r
- width: 400px;\r
+ width: 350px;\r
-webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.25);\r
-moz-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.25);\r
box-shadow: 0 10px 100px rgba(0, 0, 0, 0.25);\r
.hover-card-header h4 {\r
/*float: left;*/\r
display: block;\r
- width: 310px;\r
+ /*width: 310px;*/\r
/*margin-top: 25px;*/\r
/*clear: right;*/\r
}\r
.hover-card-content .profile-details {\r
font-size: 13px;\r
}\r
+.hover-card-content .profile-addr {\r
+ overflow: hidden;\r
+ display: block;\r
+ text-overflow: ellipsis;\r
+}\r
.hover-card-content li.right-aligned {\r
padding: .15em 1.25em;\r
border-left: 1px #F3F2F2 solid;\r
.hover-card-actions-connection {\r
margin-left: 30px;\r
}\r
+.hovercard .hovercard-content .hover-card-actions a.btn {\r
+ display: inline-block;\r
+}\r
.hover-card-options-wrapper {\r
position: relative;\r
display: block;\r
.media .media-body h5.media-heading a {
display: block;
}
-.media .contact-info-xs h5 {
+.media .contact-info-comment {
+ display: table-cell;
+}
+.media .contact-info-xs h5,
+.media .contact-info-comment {
margin: 0 0 5px;
}
.media-heading {
font-size: 15px;
font-weight: bold;
}
+.wall-item-name.xs {
+ font-weight: 700;
+ font-size: 14px;
+}
/* The lock symbol popup */
#panel {
// removes all hover cards
function removeAllhoverCards(event,priorTo) {
// don't remove hovercards until after 100ms, so user have time to move the cursor to it (which gives it the dont-remove-card class)
- setTimeout(function(){
- $.each($('.hovercard'),function(){
- var title = $(this).attr("data-orig-title");
- // don't remove card if it was created after removeAllhoverCards() was called
- if($(this).data('card-created') < priorTo) {
- // don't remove it if we're hovering it right now!
- if(!$(this).hasClass('dont-remove-card')) {
- $('[data-hover-card-active="' + $(this).data('card-created') + '"]').removeAttr('data-hover-card-active');
- $(this).popover("hide");
- }
- }
- });
- },100);
+// setTimeout(function(){
+// $.each($('.hovercard'),function(){
+// var title = $(this).attr("data-orig-title");
+// // don't remove card if it was created after removeAllhoverCards() was called
+// if($(this).data('card-created') < priorTo) {
+// // don't remove it if we're hovering it right now!
+// if(!$(this).hasClass('dont-remove-card')) {
+// $('[data-hover-card-active="' + $(this).data('card-created') + '"]').removeAttr('data-hover-card-active');
+// $(this).popover("hide");
+// }
+// }
+// });
+// },100);
}
// if we're hovering a hover card, give it a class, so we don't remove it
{{* contact info header for smartphones *}}
<div role="heading " class="contact-info-xs hidden-lg hidden-md">
<h5 class="media-heading">
- <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><strong>{{$item.name}}</strong></a>
+ <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span>{{$item.name}}</span></a>
<p class="text-muted"><small>
<span class="wall-item-ago">{{$item.ago}}</span> {{if $item.location}} — ({{$item.location}}){{/if}}</small>
</p>
{{* contact info header for smartphones *}}
<div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-xs hidden-lg hidden-md"><!-- <= For smartphone (responsive) -->
<h5 class="media-heading">
- <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><strong>{{$item.name}}</strong></a>
+ <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span>{{$item.name}}</span></a>
<p class="text-muted">
<small><span class="wall-item-ago">{{$item.ago}}</span> {{if $item.location}} — ({{$item.location}}){{/if}}</small>
</p>
{{* contact info header for comments *}}
{{if $item.thread_level!=1}}
<div class="media-body">{{*this is the media body for comments - this div must be closed at the end of the file *}}
- <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-xs">
+ <div role="heading " aria-level="{{$item.thread_level}}" class="contact-info-comment">
<h5 class="media-heading">
- <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><strong class="btn-link">{{$item.name}}</strong></a>
+ <a href="{{$item.profile_url}}" title="{{$item.linktitle}}" class="wall-item-name-link userinfo"><span class="btn-link">{{$item.name}}</span></a>
<span class="text-muted">
<small><span title="{{$item.localtime}}" data-toggle="tooltip">{{$item.ago}}</span> {{if $item.location}} — ({{$item.location}}){{/if}}</small>
</span>