This commit is contained in:
2023-11-10 17:33:58 +03:00
parent bbd3fd51dc
commit d4e3b75bcb
3 changed files with 8 additions and 7 deletions

View File

@@ -28,11 +28,11 @@
.block_overlay{
height: 100vh;
/*width: 100vw;*/
width: 100vw;
/*background: rgba(39, 53, 62, 0.7);*/
backdrop-filter: blur(6px);
z-index: 100;
/*position: fixed;*/
position: fixed;
top: 86px;
display: none;
}
@@ -43,7 +43,7 @@
/*background: rgba(39, 53, 62, 0.7);*/
backdrop-filter: blur(6px);
z-index: 100;
position: absolute;
position: fixed;
top: -55px;
}
@@ -2214,10 +2214,10 @@
.cut_width_f_curtain{
max-width: 1280px;
text-align: -webkit-right;
position: relative;
position: sticky;
margin: auto;
z-index: 10002;
top: 0;
top: 61px;
}
.menu_buttons{

View File

@@ -5,7 +5,8 @@ profile_tabs_f_static_map = new Map([
['change_profile','change_profile'],
['new_route_view_customer','create_route_for_customer'],
['new_route_view_mover','create_route_for_mover'],
['get_routes','my_routes']
['get_routes','my_routes'],
['dashboard','dashboard']
])

View File

@@ -2,7 +2,7 @@
{% csrf_token %}
<div class="menu_profile {% if not page_type == 'profile' %}background{% endif %}">
{% if user_subscribe %}<div class="subscribe_type_txt"><span class="f-l">Подписка:</span> <span class="f-r">{{ user_subscribe.subscribe.name }}</span><div class="clear_both"></div></div>{% endif %}
{% with sel_page_name='create_route_for_mover' title="Профиль" img_path="/static/img/svg/User.svg"%}
{% with sel_page_name='create_route_for_mover' ajax_url="dashboard" title="Профиль" img_path="/static/img/svg/User.svg"%}
{% include "widgets/profile/w_button_for_profile_menu.html" %}
{% endwith %}
{% with sel_page_name='create_route_for_customer' dom_id="customer" ajax_url="new_route_view" owner_type="customer" title="Разместить объявление как отправитель" img_path="/static/img/svg/PushPin.svg"%}