]> git.mxchange.org Git - friendica.git/commitdiff
frio: move some more headings to the navbar
authorrabuzarus <>
Sun, 26 Jun 2016 09:02:12 +0000 (11:02 +0200)
committerrabuzarus <>
Sun, 26 Jun 2016 09:02:12 +0000 (11:02 +0200)
view/theme/frio/css/style.css
view/theme/frio/js/theme.js

index 8ddfcbf4367fc553331881a91aca038ea322ac9b..1eda19764f7edd73dbd7890cc7062defb3203fcf 100644 (file)
@@ -241,6 +241,10 @@ aside .badge {
     opacity: 0.7;
 }
 
+/* disabled elements */
+.community-content-wrapper > h3, .network-content-wrapper > .section-title-wrapper {
+    display:none;
+}
 
 header #site-location {
     display: none;
@@ -724,7 +728,20 @@ nav.navbar a {
     margin: 0;
     font-weight: 400
 }
-
+#topbar-second #nav-short-info .heading {
+    margin-left: -14px;
+    overflow: hidden;
+    white-space: nowrap;
+    padding-right: 20px;
+    text-overflow: ellipsis;
+}
+#topbar-second #tabmenu .heading {
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    color: $link_color;
+    text-align: center;
+}
 
 /* Dropdown Menus */
 .nav-pills .dropdown-menu,
index f2537f4872c2bba0ebab2c14e27876a642ac6f77..296c4667d30c30484e2ed09a55b580065d94753e 100644 (file)
@@ -179,6 +179,33 @@ $(document).ready(function(){
                // there are two elements with this class but we don't want the js template
                $(".network-content-wrapper > #viewcontact_wrapper-network .contact-wrapper").first().appendTo("#nav-short-info");
        }
+
+       // move heading from network stream to the second navbar nav-short-info section
+       if( $(".network-content-wrapper > .section-title-wrapper").length) {
+               // get the heading element
+               var heading = $(".network-content-wrapper > .section-title-wrapper > h2");
+               // get the text of the heading
+               var headingContent = heading.text();
+               // create a new element with the content of the heading
+               var newText = '<h4 class="heading" data-toggle="tooltip" title="'+headingContent+'">'+headingContent+'</h4>';
+               // remove the old heading element
+               heading.remove(),
+               // put the new element to the second nav bar
+               $("#topbar-second #nav-short-info").append(newText);
+       }
+
+       if( $(".community-content-wrapper").length) {
+               // get the heading element
+               var heading = $(".community-content-wrapper > h3").first();
+               // get the text of the heading
+               var headingContent = heading.text();
+               // create a new element with the content of the heading
+               var newText = '<h4 class="heading">'+headingContent+'</h4>';
+               // remove the old heading element
+               heading.remove(),
+               // put the new element to the second nav bar
+               $("#topbar-second > .container > #tabmenu").append(newText);
+       }
 });
 //function commentOpenUI(obj, id) {
 //     $(document).unbind( "click.commentOpen", handler );