- {{$notif_content}}
+ {{* The "show ignored" link *}}
+ {{if $notif_ignored_lnk}}{{$notif_ignored_lnk}}{{/if}}
+
+ {{* The notifications *}}
+ {{if $notif_content}}
+ {{foreach $notif_content as $notification}}
+ {{$notification}}
+ {{/foreach}}
+ {{/if}}
+
+ {{* If no notifications messages available *}}
+ {{if $notif_nocontent}}
+
{{$notif_nocontent}}
+ {{/if}}
diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css
index 99f32a5881..3596c5aa0b 100644
--- a/view/theme/frio/css/style.css
+++ b/view/theme/frio/css/style.css
@@ -1798,7 +1798,7 @@ ul.dropdown-menu li:hover {
.suggest-content-wrapper, .common-content-wrapper,
.allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
.directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
-.message-content-wrapper, .apps-content-wrapper, .notifications-content-wrapper,
+.message-content-wrapper, .apps-content-wrapper,
.admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper {
min-height: calc(100vh - 150px);
padding: 15px;
@@ -2157,6 +2157,54 @@ td.fc-day {
.group {
margin-left: 20px;
}
+
+/* Notifications */
+ul.notif-network-list {
+ margin-left: -15px;
+ margin-right: -15px;
+}
+ul.notif-network-list > li {
+ padding-left: 15px;
+ padding-right: 15px;
+}
+.intro-wrapper.media {
+ overflow: visible;
+ word-wrap: break-word;
+ margin-top: 0;
+}
+.intro-photo-wrapper img.intro-photo {
+ height:80px;
+ width: 80px;
+ border-radius: 4px;
+}
+.intro-actions {
+ display: flex;
+}
+.intro-enty-name h4 {
+ font-size: 15px !important;
+}
+.intro-wrapper button.intro-action-link {
+ opacity: 0.1;
+ transition: all 0.25s ease-in-out;
+}
+.intro-wrapper button.intro-action-link,
+.intro-wrapper button.intro-action-link:hover {
+ padding-right: 5px;
+ padding-left: 5px;
+ color: #555;
+}
+ul li:hover .intro-wrapper button.intro-action-link {
+ opacity: 0.8;
+ transition: all 0.25s ease-in-out;
+}
+ul li:hover .intro-wrapper button.intro-action-link:hover {
+ opacity: 1;
+}
+.intro-desc-label, .intro-url-label, .intro-network-label,
+.intro-location-label, .intro-gender-label, .intro-keywords-label,
+.intro-about-label, .intro-knowyou-label {
+ font-weight: bold;
+}
/*
* Overwriting for transparency and other colors
*/
diff --git a/view/theme/frio/js/modal.js b/view/theme/frio/js/modal.js
index b58288318d..b29b8d4caa 100644
--- a/view/theme/frio/js/modal.js
+++ b/view/theme/frio/js/modal.js
@@ -204,6 +204,19 @@ function addToModal(url) {
});
}
+// Add a element (by it's id) to a bootstrap modal
+function addElmToModal(id) {
+ var elm = $(id).html();
+ var modal = $('#modal').modal();
+
+ modal
+ .find('#modal-body')
+ .append(elm)
+ .modal.show;
+
+ loadModalTitle();
+}
+
// function to load the html from the edit post page into
// the jot modal
function editpost(url) {
diff --git a/view/theme/frio/templates/intros.tpl b/view/theme/frio/templates/intros.tpl
new file mode 100644
index 0000000000..86c7fc342c
--- /dev/null
+++ b/view/theme/frio/templates/intros.tpl
@@ -0,0 +1,54 @@
+
+
+ {{include file="section_title.tpl" title=$notif_header}}
+
+ {{if $tabs }}{{include file="common_tabs.tpl"}}{{/if}}
+
+
+ {{* The "show ignored" link *}}
+ {{if $notif_ignored_lnk}}{{$notif_ignored_lnk}}{{/if}}
+
+ {{* The notifications *}}
+ {{if $notif_content}}
+
+ {{/if}}
+
+ {{* If no notifications messages available *}}
+ {{if $notif_nocontent}}
+
{{$notif_nocontent}}
+ {{/if}}
+
+