]> git.mxchange.org Git - friendica.git/commitdiff
some work on vier nav-notification-menu
authorrabuzarus <>
Mon, 28 Dec 2015 19:40:04 +0000 (20:40 +0100)
committerrabuzarus <>
Mon, 28 Dec 2015 19:40:04 +0000 (20:40 +0100)
js/main.js
view/theme/vier/style.css
view/theme/vier/templates/nav.tpl

index f106b3daf43e93141a24cf3bf68d4e60cde08d2f..b28b1079b73c181f8d8eb240c9ef5090330bab98 100644 (file)
                                eNotif.children("note").each(function(){
                                        e = $(this);
                                        var text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>");
+                                       var contact = ("<a href="+e.attr('url')+"><span class='contactname'>"+e.attr('name')+"</span></a>");
                                        var seenclass = (e.attr('seen')==1)?"notify-seen":"notify-unseen";
-                                       var html = notifications_tpl.format(e.attr('href'),
-                                               e.attr('photo'),                    // {0}
-                                               text,                               // {1}
-                                               e.attr('date'),                     // {2}
-                                               seenclass,                          // {3}
-                                               new Date(e.attr('timestamp')*1000)  // {4}
+                                       var html = notifications_tpl.format(
+                                               e.attr('href'),                     // {0}  // link to the source
+                                               e.attr('photo'),                    // {1}  // photo of the contact
+                                               text,                               // {2}  // preformatet text (autor + text)
+                                               e.attr('date'),                     // {3}  // date of notification (time ago)
+                                               seenclass,                          // {4}  // vistiting status of the notification
+                                               new Date(e.attr('timestamp')*1000), // {5}  //date of notification
+                                               e.attr('url'),                      // {6}  // profile url of the contact
+                                               e.text().format(""),                // {7}  // clean status text
+                                               contact                             // {8}  //preformatat author (name + profile url)
                                        );
                                        nnm.append(html);
                                });
index 7d0c36be1d601477b4de9bcd511557b6887c2705..3304d141f94782dfbdf47cccac21a3bdeaf68eac 100644 (file)
@@ -917,7 +917,8 @@ ul.menu-popup .empty {
 #nav-notifications-menu {
   width: 400px;
   max-height: 550px;
-  overflow: auto;
+  overflow: hidden;
+  posistion: absolute;
 }
 /* #nav-notifications-menu a {
        display: inline;
@@ -928,10 +929,31 @@ ul.menu-popup .empty {
   background-color: #bdcdd4;
 }*/
 
+
+/* überleugung das zu löschen: begin*/
+#nav-notifications-menu > li {
+  display: block;
+  color: #737373;
+  cursor: pointer;
+}
+
+#nav-notifications-menu > li:hover {
+  background-color: #e5e5e5;
+  color: #000;
+}
+
 #nav-notifications-menu img {
-  float: left;
-  margin-right: 5px;
+  width: 35px;
+  height: 35px;
+  border-radius: 5px;
 }
+
+#nav-notifications-menu .notif-desc-wrapper a {
+  display: inline;
+/*  color: #2d2d2d;*/
+  padding: 0px;
+}
+
 #nav-notifications-menu .contactname {
   font-weight: bold;
 }
@@ -947,6 +969,26 @@ ul.menu-popup .empty {
         padding: 7px 7px 0px 0px;
 }
 
+/* überlegung das zu löschen Ende*/
+.notif-entry-wrapper {
+  padding: 5px;
+  min-height: 35px;
+  border-bottom: 1px solid #DDDDDD;
+}
+
+.notif-photo-wrapper {
+  float: left;
+  margin-right: 5px;
+}
+
+.notif-photo-wrapper a {
+  padding: 0 !important;
+}
+
+.notif-desc-wrapper {
+  overflow: hidden;
+}
+
 right_aside {
   display: none;
   vertical-align: top;
index 77bad93705bb20a6421bd35945cf6d5a77294cf1..320343bef87f260e46f52e199b972585a537b241 100644 (file)
 
 </nav>
 <ul id="nav-notifications-template" style="display:none;" rel="template">
-       <li class="{4}"><a href="{0}" title="{5}"><img data-src="{1}">{2} <span class="notif-when">{3}</span></a></li>
+       <li class="{4}" onclick="location.href='{0}';">
+               <div class="notif-entry-wrapper">
+                       <div class="notif-photo-wrapper"><a href="{6}"><img data-src="{1}"></a></div>
+                       <div class="notif-desc-wrapper">
+                               {8}{7}
+                               <div><time class="notif-when" title="{5}">{3}</time></div>
+                       </div>
+               </div>
+       </li>
 </ul>
 <!--
 <div class="icon-flag" style="position: fixed; bottom: 10px; left: 20px; z-index:9;">{{$langselector}}</div>