💬

NUtakoe

Выберите пользователя, чтобы начать общение

Пользователь печатает...

Контакты

История вызовов

📞
История вызовов пуста

Настройки

Профиль

Уведомления

Push-уведомления Получать уведомления о новых сообщениях
Push-уведомления Уведомления о новых сообщениях

Оформление

Светлая тема Светлое оформление приложения
Использовать тёмное оформление

Конфиденциальность

Безопасность Настройки приватности аккаунта
📌
Закреплённое сообщение
Сообщение
🔍
0
/* ========================================================= ЧУЖОЙ ПРОФИЛЬ — ТОЛЬКО ПРОСМОТР ========================================================= */ #profileDisplayName, #profileUsername { display: block !important; border: 0 !important; outline: 0 !important; background: transparent !important; box-shadow: none !important; cursor: default !important; text-align: center !important; padding-left: 0 !important; padding-right: 0 !important; } /* Ник */ #profileDisplayName { font-size: 21px !important; font-weight: 700 !important; color: #222 !important; margin-top: 12px !important; margin-bottom: 4px !important; } /* @username */ #profileUsername { font-size: 14px !important; font-weight: 500 !important; color: #888 !important; margin-top: 0 !important; margin-bottom: 12px !important; } /* Disabled не делает текст бледным */ #profileDisplayName:disabled, #profileUsername:disabled { opacity: 1 !important; -webkit-text-fill-color: currentColor !important; } /* Убираем быстрые реакции */ .quick-reactions, .quick-reaction, .profile-quick-reactions, #quickReactions, #profileQuickReactions, [class*="quick-reaction"], [class*="quickReaction"], [id*="quickReaction"], [id*="quick-reaction"] { display: none !important; pointer-events: none !important; visibility: hidden !important; } /* Запрещаем редактирование */ #profileDisplayName, #profileUsername { user-select: text !important; -webkit-user-select: text !important; } /* Кнопка сохранения */ #saveProfile { display: none !important; } /* Элементы редактора */ .change-avatar, .avatar-upload, .profile-edit-button, .profile-save, .profile-settings { display: none !important; } /* Чужой профиль — кнопка изменения фото запрещена */ display: none !important; pointer-events: none !important; } (function () { function hideOtherAvatarButton() { const modal = document.getElementById("profileModal"); if (!modal) return; if ( !modal.classList.contains( ) ) { return; } const button = modal.querySelector( 'label[for="avatarInput"]' ); if (button) { button.style.setProperty( "display", "none", "important" ); button.style.setProperty( "visibility", "hidden", "important" ); button.style.setProperty( "pointer-events", "none", "important" ); } const input = modal.querySelector("#avatarInput"); if (input) { input.style.setProperty( "display", "none", "important" ); } } function start() { const modal = document.getElementById("profileModal"); if (!modal) return; hideOtherAvatarButton(); const observer = new MutationObserver( function () { hideOtherAvatarButton(); } ); observer.observe( modal, { attributes: true, childList: true, subtree: true } ); } if ( document.readyState === "loading" ) { document.addEventListener( "DOMContentLoaded", start, { once: true } ); } else { start(); } })();