-moz-box-shadow: 0 0 3px #dadada;
}
+.section-title-wrapper {
+ overflow: hidden;
+}
/* Profile-page */
#profile-content-standard,
#profile-content-advanced {
margin-left: 20px;
}
-/* Notifications */
+/* Intro Notifications */
ul.notif-network-list {
margin-left: -15px;
margin-right: -15px;
word-wrap: break-word;
margin-top: 0;
}
-.intro-photo-wrapper img.intro-photo,
-.notif-item img.notif-image {
- height:80px;
- width: 80px;
+.intro-photo-wrapper img.intro-photo {
+ height:48px;
+ width: 48px;
border-radius: 4px;
}
.intro-actions {
margin-top: 5px
}
+/* Notifications Page */
+.notif-item img.notif-image {
+ height: 48px;
+ width: 48px;
+ border-radius: 4px;
+}
+.notif-item .notif-desc-wrapper {
+ height: 48px;
+}
+.notif-item .notif-desc-wrapper a {
+ height: 100%;
+ display: block;
+ color: #555;
+ font-size: 13px;
+ font-weight: 600;
+}
+
/* Search Page */
/* This is a little bit hacky. Since the search page is used for diferent
--- /dev/null
+
+<div class="notif-item {{if !$item_seen}}unseen{{/if}} {{$item_label}} media">
+ <div class="notif-photo-wrapper media-object pull-left">
+ <img src="{{$item_image}}" class="notif-image">
+ </div>
+ <div class="notif-desc-wrapper media-body">
+ <a href="{{$item_link}}">
+ {{$item_text}}
+ <div><time class="notif-when time" data-toggle="tooltip">{{$item_when}}</time></div>
+ </a>
+ </div>
+</div>