This commit is contained in:
2023-10-18 17:36:55 +03:00
parent fe90ab8f50
commit 31ba8a86bf
4 changed files with 19 additions and 11 deletions

View File

@@ -628,15 +628,15 @@
.name_ticket{
width: 100%;
filter: drop-shadow(-1px 4px 10px rgba(198, 199, 203, 0.20)) drop-shadow(0px -1px 10px rgba(198, 199, 203, 0.20));
height: 60px;
height: 40px;
background: #FFFFFF;
/*padding: 20px;*/
margin-bottom: 40px;
margin-bottom: 20px;
border-radius: 3px;
}
.name_ticket > span{
padding: 20px;
padding: 10px;
font-size: 16px;
display: block;
overflow: hidden;
@@ -1919,4 +1919,10 @@
.subscribe_type_txt{
color: #000;
font-size: 14px;
}
.header_big_background{
height: 90px;
background: #F8F8F8;
width: 100%;
}

View File

@@ -15,7 +15,7 @@
// clearInterval(check_msg)
// }
// check_new_messages_timeout(new_timeout_time)
}
// function getSocketState () {

View File

@@ -39,10 +39,10 @@ document.addEventListener('DOMContentLoaded', function() {
});
window.addEventListener('scroll', () => {
let headerBG = document.getElementById('header_bg')
headerBG.style.backgroundColor = 'rgb(248 248 248 / 90%)'
headerBG.style.padding = '20px 40px'
// let headerBG = document.getElementById('header_bg')
//
// headerBG.style.backgroundColor = 'rgb(248 248 248 / 90%)'
// headerBG.style.padding = '20px 40px'
// headerBG.style.paddingBottom = 'padding: 10px 40px 10px 40px'
// headerBG.style.paddingRight = 'padding: 10px 40px 10px 40px'
// headerBG.style.paddingLeft = 'padding: 10px 40px 10px 40px'

View File

@@ -16,6 +16,7 @@
<link rel="stylesheet" href="{% static 'css/datarangepicker.css' %}" />
<script src="{% static "js/global_js.js" %}"></script>
<script src="{% static "js/chat_socket_start.js" %}"></script>
{% if user and not user.is_anonymous %}
<script src='{% static "js/chat_sockets.js" %}'></script>
<script>
@@ -51,9 +52,10 @@
</head>
<body>
<div class="wrapper">
{% include 'blocks/b_header.html' %}
{# modifided by boris#}
<div class="header_big_background">
{% include 'blocks/b_header.html' %}
</div>
{% block content %}
{% endblock %}