mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-03-13 05:51:03 +00:00
fix of window resize things, set font size to follow button, remove instead detach on modal closing
This commit is contained in:
parent
b7876a71dc
commit
8178c6e5f8
@ -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 {
|
||||
|
@ -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'))
|
||||
|
@ -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()
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user