Update content of files

This commit is contained in:
GitHub Action 2023-11-30 03:32:43 +00:00
parent bd9b83d72d
commit 7855525ad0
2 changed files with 25 additions and 3 deletions

View file

@ -477,6 +477,9 @@ i.icon {
border: none; border: none;
overflow: hidden; overflow: hidden;
} }
.tm-header-action.tm-dropdown > .dropdown-menu {
padding: 6px 0;
}
.tm-dropdown > .dropdown-backdrop { .tm-dropdown > .dropdown-backdrop {
z-index: 89; z-index: 89;
} }
@ -484,11 +487,15 @@ i.icon {
display: block; display: block;
position: relative; position: relative;
padding: 8px 60px 8px 14px; padding: 8px 60px 8px 14px;
line-height: 20px;
color: var(--dropdown-color); color: var(--dropdown-color);
white-space: nowrap; white-space: nowrap;
cursor: pointer; cursor: pointer;
clear: both; clear: both;
} }
.tm-dropdown > .dropdown-menu > li > .dropdown-menu-item.icon-before {
padding-left: 46px;
}
.tm-dropdown > .dropdown-menu > li > .dropdown-menu-item[data-counter]:after { .tm-dropdown > .dropdown-menu > li > .dropdown-menu-item[data-counter]:after {
content: attr(data-counter); content: attr(data-counter);
display: inline-block; display: inline-block;
@ -517,6 +524,14 @@ i.icon {
right: 14px; right: 14px;
top: 14px; top: 14px;
} }
.tm-header-action.tm-dropdown > .dropdown-menu > li > .dropdown-menu-item.icon-before:before {
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
margin: 8px 13px;
}
#aj_content { #aj_content {
@ -606,9 +621,6 @@ i.icon {
width: 100%; width: 100%;
min-width: fit-content; min-width: fit-content;
} }
.tm-header-actions .tm-dropdown > .dropdown-menu > li > .dropdown-menu-item {
padding-right: 28px;
}
.tm-header-button { .tm-header-button {
font-size: 13px; font-size: 13px;
line-height: 18px; line-height: 18px;

View file

@ -1302,11 +1302,13 @@ var Random = {
var LoginCodes = { var LoginCodes = {
init: function() { init: function() {
Aj.onLoad(function(state) { Aj.onLoad(function(state) {
$('.js-toggle-receive').on('change', LoginCodes.eToggleReceive);
state.needUpdate = true; state.needUpdate = true;
state.updLastReq = +Date.now(); state.updLastReq = +Date.now();
state.updStateTo = setTimeout(LoginCodes.updateState, Main.UPDATE_PERIOD); state.updStateTo = setTimeout(LoginCodes.updateState, Main.UPDATE_PERIOD);
}); });
Aj.onUnload(function(state) { Aj.onUnload(function(state) {
$('.js-toggle-receive').off('change', LoginCodes.eToggleReceive);
clearTimeout(state.updStateTo); clearTimeout(state.updStateTo);
state.needUpdate = false; state.needUpdate = false;
}); });
@ -1337,6 +1339,14 @@ var LoginCodes = {
} }
} }
},
eToggleReceive: function() {
var can_receive = $(this).prop('checked');
$('.js-codes-main').toggleClass('codes-disabled', !can_receive);
Aj.apiRequest('toggleLoginCodes', {
number: Aj.state.number,
can_receive: can_receive ? 1 : 0
});
} }
}; };