fix of window resize things, set font size to follow button, remove instead detach on modal closing

This commit is contained in:
Simon Grim 2015-03-09 12:21:06 +05:00
parent b7876a71dc
commit 8178c6e5f8
4 changed files with 9 additions and 5 deletions

View File

@ -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 {

View File

@ -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'))

View File

@ -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()

View File

@ -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 {