]> git.mxchange.org Git - friendica.git/commitdiff
frio: some hover card css fixes
authorrabuzarus <>
Tue, 7 Jun 2016 08:13:08 +0000 (10:13 +0200)
committerrabuzarus <>
Tue, 7 Jun 2016 08:13:08 +0000 (10:13 +0200)
view/theme/frio/css/hovercard.css
view/theme/frio/css/style.css
view/theme/frio/js/hovercard.js

index 3e60f03cb6afea7d83346a58895050cc90b817e0..5f972cd1fbbf19a1f54dfe88f923011bcb1c645b 100644 (file)
   display: block;\r
   text-overflow: ellipsis;\r
 }\r
+.hovercard-content .hover-card-details .hover-card-content   .profile-details > .profile-network a {\r
+    color: #777;\r
+}\r
 .hover-card-actions {\r
   display: flex;\r
 }\r
index 11f85ae93f8829e5c964dfd98cb73e888be6b279..28ccc6636a5089b68de27321024d5054c115490a 100644 (file)
@@ -109,7 +109,7 @@ a#item-delete-selected {
 * Overwriting and Extend Bootstrap
 */
 .label, .label a {
-    color: #fff !important;
+    color: #fff;
 }
 
 /* Buttons */
@@ -1301,6 +1301,10 @@ blockquote.shared_content {
 .wall-item-tags a:hover {
     text-decoration: none;
 }
+.wall-item-bottom .label,
+.wall-item-bottom .label a {
+    color: #fff;
+}
 
 /* item social action buttons */
 .wall-item-actions, .wall-item-actions a {
@@ -1924,3 +1928,11 @@ There are for some reasons empty <a> tags. I don't know why */
     padding: 0;
 }
 
+/* hovercard fix */
+body .tread-wrapper .hovercard a,
+body .tread-wrapper .hovercard a:hover {
+    color: $link_color;
+}
+body .tread-wrapper .hovercard:hover .hover-card-content a {
+    color: $link_color !important;
+}
index 6e2a827cd657a716e02ffde4f2b4b3e100ed615b..f17d47cd2d100e18774b18047ad63cf11028dc43 100644 (file)
@@ -112,7 +112,7 @@ $(document).ready(function(){
        });
        $('body').on('mouseleave','.hovercard', function(e) {
                $(this).removeClass('dont-remove-card');
-               $(this).popover("hide");
+               //$(this).popover("hide");
        });
 
 }); // End of $(document).ready
@@ -128,7 +128,7 @@ function removeAllhoverCards(event,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");
+                                       //(this).popover("hide");
                                }
                        }
                });