diff --git a/css/hovercard.css b/css/hovercard.css index 54dff6a402..b646bf4f28 100644 --- a/css/hovercard.css +++ b/css/hovercard.css @@ -240,7 +240,7 @@ a:visited { /* Basic hovercard */ .basic-content { - padding: 9px 14px; + padding: 9px; } .basic-image-wrapper { background: #fff; @@ -425,6 +425,7 @@ a:visited { .image-wrapper.medium > a img { height: 80px; width: 80px; + margin-bottom: 0; } .image-wrapper.large { max-width: 140px; @@ -451,7 +452,7 @@ a:visited { border-radius: 4px; /*max-width: 250px;*/ max-width: 400px; - width: 400px; + width: 350px; -webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.25); box-shadow: 0 10px 100px rgba(0, 0, 0, 0.25); @@ -493,7 +494,7 @@ a:visited { .hover-card-header h4 { /*float: left;*/ display: block; - width: 310px; + /*width: 310px;*/ /*margin-top: 25px;*/ /*clear: right;*/ } @@ -533,6 +534,11 @@ a:visited { .hover-card-content .profile-details { font-size: 13px; } +.hover-card-content .profile-addr { + overflow: hidden; + display: block; + text-overflow: ellipsis; +} .hover-card-content li.right-aligned { padding: .15em 1.25em; border-left: 1px #F3F2F2 solid; @@ -573,6 +579,9 @@ a:visited { .hover-card-actions-connection { margin-left: 30px; } +.hovercard .hovercard-content .hover-card-actions a.btn { + display: inline-block; +} .hover-card-options-wrapper { position: relative; display: block; diff --git a/css/style.css b/css/style.css index f06481112a..d17e283503 100644 --- a/css/style.css +++ b/css/style.css @@ -1163,7 +1163,11 @@ section #jotOpen { .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 { @@ -1173,6 +1177,10 @@ section #jotOpen { font-size: 15px; font-weight: bold; } +.wall-item-name.xs { + font-weight: 700; + font-size: 14px; +} /* The lock symbol popup */ #panel { diff --git a/js/hovercard.js b/js/hovercard.js index c42b0ce2f1..55d2b2496d 100644 --- a/js/hovercard.js +++ b/js/hovercard.js @@ -95,19 +95,19 @@ $('body').on("mouseleave touchstart scroll click dblclick mousedown mouseup subm // 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 diff --git a/templates/search_item.tpl b/templates/search_item.tpl index cffcf3fb15..da5b0d8e98 100644 --- a/templates/search_item.tpl +++ b/templates/search_item.tpl @@ -96,7 +96,7 @@ {{* contact info header for smartphones *}}