0.8.360
This commit is contained in:
@@ -2361,6 +2361,7 @@
|
|||||||
float: left;
|
float: left;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
top: 293px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.support .menu_buttons.left.open{
|
.support .menu_buttons.left.open{
|
||||||
|
|||||||
@@ -51,4 +51,13 @@ function open_chat (user_id){
|
|||||||
let href = host + '/ru/profile/page/chat/' + user_id_
|
let href = host + '/ru/profile/page/chat/' + user_id_
|
||||||
// window.location.href = host + '/profile/chat/' + user_id
|
// window.location.href = host + '/profile/chat/' + user_id
|
||||||
window.location.replace(href)
|
window.location.replace(href)
|
||||||
|
}
|
||||||
|
|
||||||
|
function scroll_ev (event,el){
|
||||||
|
let curtain = document.querySelector(".menu_buttons.filters")
|
||||||
|
if (el.scrollY === 300 || el.scrollY > 300){
|
||||||
|
curtain.style.top = "0"
|
||||||
|
} else if (el.scrollY < 300) {
|
||||||
|
curtain.style.top = "293px"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -52,8 +52,7 @@
|
|||||||
{% block meta %}
|
{% block meta %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body {% if page_type == 'routes' %}onscroll="scroll_ev(event,this)" {% endif %}>
|
||||||
|
|
||||||
<div class="block_overlay {% if page_type == 'profile' %}show{% elif page_type == 'routes' %} show routes n_profile{% else %}hidden n_profile{% endif %}" onclick="open_curtain()"></div>
|
<div class="block_overlay {% if page_type == 'profile' %}show{% elif page_type == 'routes' %} show routes n_profile{% else %}hidden n_profile{% endif %}" onclick="open_curtain()"></div>
|
||||||
<div class="wrapper_main">
|
<div class="wrapper_main">
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user