Compare commits
No commits in common. "7dc6882ebd16b00b6479e4b5a0211779f6f27328" and "052cc1ab57d980a8f6537f17f82b954eb388cae5" have entirely different histories.
7dc6882ebd
...
052cc1ab57
@ -809,7 +809,6 @@
|
||||
.clients .history__chat-form .submit {
|
||||
text-align: right;
|
||||
width: 47px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.clients .chat-form .message-input {
|
||||
@ -1732,7 +1731,6 @@
|
||||
.clients .history__chat-form .submit {
|
||||
text-align: right;
|
||||
width: 47px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.clients .chat-form .message-input {
|
||||
@ -3366,22 +3364,15 @@
|
||||
|
||||
/* dashboard */
|
||||
|
||||
.clients .chat-form td {
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
#clientChatTextAreaNew {
|
||||
width: 99%;
|
||||
border: 0;
|
||||
height: auto;
|
||||
max-height: 200px;
|
||||
font-size: 17px;
|
||||
font-family: "Lato";
|
||||
resize: vertical;
|
||||
min-height: 20px;
|
||||
padding: 10px;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.crm__dashboard {
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
// Авто-сгенерировано: postbuild.js
|
||||
import '/deal/assets/index-Bdwo4iO1.js';
|
||||
import '/deal/assets/index-D6utbWDV.js';
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
15
js/main.js
15
js/main.js
@ -8213,21 +8213,6 @@ $('body').on('paste', '#custom_frequency, #installment_period', function (e) {
|
||||
}
|
||||
});
|
||||
|
||||
$(document).on("focus", "#clientChatTextAreaNew", function() {
|
||||
var el = this;
|
||||
if (el._wheelBound) return;
|
||||
el._wheelBound = true;
|
||||
el.addEventListener("wheel", function(e) {
|
||||
var atTop = el.scrollTop === 0 && e.deltaY < 0;
|
||||
var atBottom = el.scrollTop + el.clientHeight >= el.scrollHeight && e.deltaY > 0;
|
||||
if (!atTop && !atBottom) {
|
||||
e.stopPropagation();
|
||||
el.scrollTop += e.deltaY;
|
||||
e.preventDefault();
|
||||
}
|
||||
}, { capture: true });
|
||||
});
|
||||
|
||||
$("body").on("click", ".zipal-radio-price, .destination-box", function() {
|
||||
calculateZipalPrice();
|
||||
calculatePackagePrice();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user