diff --git a/css/style.css b/css/style.css index 6b5453f..553264a 100644 --- a/css/style.css +++ b/css/style.css @@ -124,10 +124,12 @@ button.follow, button.unfollow, .following-list button.private { background: none; border: solid 1px rgba( 0, 0, 0, .2 ); padding: 3px 15px; + font-size: 12px; } .following-list .public-following { padding: 4px 16px; + font-size: 12px; } .following-list .public-following:hover { diff --git a/js/interface_common.js b/js/interface_common.js index 37519bd..8da5b02 100644 --- a/js/interface_common.js +++ b/js/interface_common.js @@ -48,7 +48,7 @@ function closeModalHandler($this) $modalWindows.fadeOut( "fast", function() { - $modalWindows.detach(); + $modalWindows.remove(); }); $body.css({ "overflow": "auto", @@ -86,7 +86,7 @@ function closePrompt() $modalWindows.fadeOut( "fast", function() { - $modalWindows.detach(); + $modalWindows.remove(); }); $body.css({ "overflow": "auto", @@ -1448,13 +1448,13 @@ function replaceDashboards() { $('.wrapper').addClass('w1200'); $('.userMenu').addClass('w1200'); var wf = $('.module.who-to-follow'); - wf.remove(); + wf.detach(); wf.appendTo($('.dashboard.right')); } else if ($(window).width() < 1200 && $('.wrapper').hasClass('w1200')) { $('.wrapper').removeClass('w1200'); $('.userMenu').removeClass('w1200'); var wf = $('.module.who-to-follow'); - wf.remove(); + wf.detach(); $('.module.mini-profile').after(wf); } @@ -1523,6 +1523,7 @@ function initInterfaceCommon() { $( ".mentions-from-user").bind( "click", openMentionsModal ); replaceDashboards(); + $( window ).resize(replaceDashboards); $('.tox-ctc').on('click', function(){ window.prompt(polyglot.t('copy_to_clipboard'), $(this).attr('data')) diff --git a/js/interface_home.js b/js/interface_home.js index b9e7df2..1504bee 100644 --- a/js/interface_home.js +++ b/js/interface_home.js @@ -149,7 +149,6 @@ var InterfaceFunctions = function() //*********************************************** var interfaceFunctions = new InterfaceFunctions; $( document ).ready( interfaceFunctions.init ); -$( window ).resize(replaceDashboards); //função no window que fixa o header das postagens function fixDiv() diff --git a/theme_calm/css/style.css b/theme_calm/css/style.css index a45c5b2..d81a177 100644 --- a/theme_calm/css/style.css +++ b/theme_calm/css/style.css @@ -135,10 +135,12 @@ button.follow, button.unfollow, .following-list button.private { background: none; border: solid 1px rgba( 0, 0, 0, .2 ); padding: 3px 15px; + font-size: 12px; } .following-list .public-following { padding: 4px 16px; + font-size: 12px; } .following-list .public-following:hover {