Alinhamento do botão de resposta automática.
3 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Alinhamento do botão de resposta automática.
Detalhes da questão
Endereço do fórum: https://systempmcre.forumeiros.com/
Versão do fórum: ModernBB
Descrição
Em continuação do meu tópico: https://ajuda.forumeiros.com/t114929-botao-de-resposta-automatica-em-caixa-de-resposta
Ficou uma dúvida que percebi agora apenas.
O símbolo ficou para a esquerda e desalinhado como percebe-se no print:
Print aqui!
Caso possam ajudar.
Re: Alinhamento do botão de resposta automática.
Olá,
Poderia ativar a conta que criei com o meu nome no seu fórum ou passar um conta teste para eu verificar o erro?
Até mais!
Poderia ativar a conta que criei com o meu nome no seu fórum ou passar um conta teste para eu verificar o erro?
Até mais!
Re: Alinhamento do botão de resposta automática.
Olá,
Veja se desta forma ficaria agradável para você
http://prntscr.com/rlt6bv
Caso fique, me envie o código JavaScript que está utilizando, com as modificações que você já fez até o momento.
Até mais!
Veja se desta forma ficaria agradável para você
http://prntscr.com/rlt6bv
Caso fique, me envie o código JavaScript que está utilizando, com as modificações que você já fez até o momento.
Até mais!
Re: Alinhamento do botão de resposta automática.
Sim, bem melhor.
Aqui está o código:
Aqui está o código:
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : -Kisthy.BAN/Breno
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "f265"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "info",
body_start: '[table style="background-color: #0aa5cc;border: solid 2px #0aa5cc;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][font=material icons]info[/font][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "done_outline",
body_start: '[table style="background-color: #016301;border: solid 2px #016301;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;horizontal-align: middle;"][font=material icons]green_check_circle[/font][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "cancel",
body_start: '[table style="background-color: #e54d42;border: solid 2px #e54d42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][font=material icons]clear[/font][/td][td style="width: 100%;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Atualização",
message: '[h4]Atualização realizada![/h4]\nFoi realizada uma atualização neste horário, em caso de erros, procure imediatamente um membro do setor administrativo ou o responsável pela atualização em que consta o erro.',
group_id: 0,
type: "done_outline"
},
{
name: "Requerimento cancelado",
message: '[h4]Requerimento cancelado[/h4]\nEste requerimento foi cancelado por (motivos)".',
group_id: 0,
type: "cancel"
},
{
name: "Revisão de projeto aprovado!",
message: '[h4]Seu projeto foi aprovado![/h4]\nParabéns o seu projeto foi aprovado pela Corregedoria. (Observações)".',
group_id: 1,
type: "done_outline"
},
{
name: "Denúncia vetada",
message: '[h4]Denúncia vetada![/h4]Sua denúncia foi vetada! (Observações).',
group_id: 1,
type: "cancel"
},
{
name: "Revisão de projeto negada!",
message: '[h4]Revisão de projeto negada![/h4]\nO seu projeto foi negado/vetado (Observações)."',
group_id: 1,
type: "cancel"
},
{
name: "Informações/avisos",
message: '[h4]Sua (SUA)[/h4](Seu aviso)".',
group_id: 2,
type: "info"
}
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Recursos Humanos'
},
{
id: 1,
name: 'Corregedoria'
},
{
id: 2,
name: 'CIAs'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div:before {content: "\\' + zModConfig[0].icon + '" !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if (_userdata.user_level === 1 | _userdata.user_level === 2) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Moderação"><div unselectable="on">Moderação</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> :fingerprint:️️️️️️️ Criado by -Kisthy.BAN/Breno</li></div></div></div>');
});
});
Re: Alinhamento do botão de resposta automática.
Olá,
Substitua o código por esse
Até mais!
Substitua o código por esse
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : -Kisthy.BAN/Breno
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "f265"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "info",
body_start: '[table style="background-color: #0aa5cc;border: solid 2px #0aa5cc;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;color: white;display: table-cell;vertical-align: middle;"][font=material icons style="margin-left: -139px!important;"]info[/font][/td][td style="width: 100%;padding: 15px;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "done_outline",
body_start: '[table style="background-color: #016301;border: solid 2px #016301;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;horizontal-align: middle;"][font=material icons style="margin-left: -139px!important;"]green_check_circle[/font][/td][td style="width: 100%;padding: 15px;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "cancel",
body_start: '[table style="background-color: #e54d42;border: solid 2px #e54d42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][font=material icons style="margin-left: -139px!important;"]clear[/font][/td][td style="width: 100%;padding: 15px;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Atualização",
message: '[h4]Atualização realizada![/h4]\nFoi realizada uma atualização neste horário, em caso de erros, procure imediatamente um membro do setor administrativo ou o responsável pela atualização em que consta o erro.',
group_id: 0,
type: "done_outline"
},
{
name: "Requerimento cancelado",
message: '[h4]Requerimento cancelado[/h4]\nEste requerimento foi cancelado por (motivos)".',
group_id: 0,
type: "cancel"
},
{
name: "Revisão de projeto aprovado!",
message: '[h4]Seu projeto foi aprovado![/h4]\nParabéns o seu projeto foi aprovado pela Corregedoria. (Observações)".',
group_id: 1,
type: "done_outline"
},
{
name: "Denúncia vetada",
message: '[h4]Denúncia vetada![/h4]Sua denúncia foi vetada! (Observações).',
group_id: 1,
type: "cancel"
},
{
name: "Revisão de projeto negada!",
message: '[h4]Revisão de projeto negada![/h4]\nO seu projeto foi negado/vetado (Observações)."',
group_id: 1,
type: "cancel"
},
{
name: "Informações/avisos",
message: '[h4]Sua (SUA)[/h4](Seu aviso)".',
group_id: 2,
type: "info"
}
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Recursos Humanos'
},
{
id: 1,
name: 'Corregedoria'
},
{
id: 2,
name: 'CIAs'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div:before {content: "\\' + zModConfig[0].icon + '" !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if (_userdata.user_level === 1 | _userdata.user_level === 2) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Moderação"><div unselectable="on">Moderação</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> :fingerprint:️️️️️️️ Criado by -Kisthy.BAN/Breno</li></div></div></div>');
});
});
Até mais!
Re: Alinhamento do botão de resposta automática.
Olá,
Eu tinha errado uma coisa no código, editei ele já, tenta substituir ele por esse
Até mais!
Eu tinha errado uma coisa no código, editei ele já, tenta substituir ele por esse
- Código:
/**
* Title : Forumotion tools for moderation
* Version : 1.0.2
* Author : -Kisthy.BAN/Breno
* Author URI : http://help.forumgratuit.ro
* License : GNU - General Public License v3.0
* Documentation : https://github.com/zeusmaximus/Moderation-tools-for-Forumotion/
*/
if (typeof zModConfig === 'undefined') var zModConfig = [{
icon: "f265"
}];
if (typeof zModTabels === 'undefined') var zModTabels = [{
type: "info",
body_start: '[table style="background-color: #0aa5cc;border: solid 2px #0aa5cc;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;color: white;display: table-cell;vertical-align: middle;"][font=material icons style="margin-left: -139px!important;"]info[/font][/td][td style="width: 100%;padding: 15px;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "done_outline",
body_start: '[table style="background-color: #016301;border: solid 2px #016301;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;horizontal-align: middle;"][font=material icons style="margin-left: -139px!important;"]green_check_circle[/font][/td][td style="width: 100%;padding: 15px;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
{
type: "cancel",
body_start: '[table style="background-color: #e54d42;border: solid 2px #e54d42;border-radius: 2px;margin: 1em 25px 1em 1em;min-width: 90%!important;"][tr style=][td style="font-size: 25px;margin-right: 15px;padding: 15px!important;color: white;display: table-cell;vertical-align: middle;"][font=material icons style="margin-left: -139px!important;"]clear[/font][/td][td style="width: 100%;padding: 15px;color: white"]',
body_end: "[/td][/tr][/table]\n\n"
},
];
if (typeof zModMessages === 'undefined') var zModMessages = [{
name: "Atualização",
message: '[h4]Atualização realizada![/h4]\nFoi realizada uma atualização neste horário, em caso de erros, procure imediatamente um membro do setor administrativo ou o responsável pela atualização em que consta o erro.',
group_id: 0,
type: "done_outline"
},
{
name: "Requerimento cancelado",
message: '[h4]Requerimento cancelado[/h4]\nEste requerimento foi cancelado por (motivos)".',
group_id: 0,
type: "cancel"
},
{
name: "Revisão de projeto aprovado!",
message: '[h4]Seu projeto foi aprovado![/h4]\nParabéns o seu projeto foi aprovado pela Corregedoria. (Observações)".',
group_id: 1,
type: "done_outline"
},
{
name: "Denúncia vetada",
message: '[h4]Denúncia vetada![/h4]Sua denúncia foi vetada! (Observações).',
group_id: 1,
type: "cancel"
},
{
name: "Revisão de projeto negada!",
message: '[h4]Revisão de projeto negada![/h4]\nO seu projeto foi negado/vetado (Observações)."',
group_id: 1,
type: "cancel"
},
{
name: "Informações/avisos",
message: '[h4]Sua (SUA)[/h4](Seu aviso)".',
group_id: 2,
type: "info"
}
];
if (typeof zModGroups === 'undefined') var zModGroups = [{
id: 0,
name: 'Recursos Humanos'
},
{
id: 1,
name: 'Corregedoria'
},
{
id: 2,
name: 'CIAs'
}
];
$(function() {
$('<style type="text/css">.sceditor-button-staff div:before {content: "\\' + zModConfig[0].icon + '" !important; }</style>').appendTo("head");
var list = "";
$(window).load(function() {
function zModGetTable(type, body) {
var str = "";
for (var y = 0; y < zModTabels.length; y++) str += (zModTabels[y].type === type) ? (body === "start") ? zModTabels[y].body_start : zModTabels[y].body_end : "";
return str;
}
function zModGetModMessageByGroupId(f, g) {
var str = "",
c = 0;
for (var z = 0; z < zModMessages.length; z++) {
if (zModMessages[z].group_id == f) {
str += "<li class='mod_editor_message group_" + zModMessages[z].group_id + "' id='group_" + z + "_" + zModMessages[z].group_id + "'><a style='cursor: pointer'>" + zModMessages[z].name + "</a></li>\n";
if (g === 0) zModInsertToSCEditor('#group_' + z + '_' + zModMessages[z].group_id + ' a', zModMessages[z].message, zModMessages[z].type);
c++;
}
}
if (g === 1) str = c;
return str;
}
function zModInsertToSCEditor(e, t, i) {
$(e).live("click", function(e) {
$("#text_editor_textarea").sceditor("instance").insertText(zModGetTable(i, "start") + t, zModGetTable(i, "end"));
});
}
function zModToggleSCEditor(o, i) {
$(o).live("click", function(o) {
$(i).toggle();
});
}
for (var x = 0; x < zModGroups.length; x++) {
if (zModGetModMessageByGroupId(zModGroups[x].id, 1) > 0) {
list += "<li class='mod_editor_section' id='list_" + zModGroups[x].id + "'><a style='cursor: pointer'>" + zModGroups[x].name + " (" + zModGetModMessageByGroupId(zModGroups[x].id, 1) + ")</a></li>" + zModGetModMessageByGroupId(zModGroups[x].id, 0);
zModToggleSCEditor("#list_" + zModGroups[x].id + " a", ".group_" + zModGroups[x].id + "");
}
}
zModToggleSCEditor('.sceditor-button.sceditor-button-staff', '.mod_box');
$("textarea, .sceditor-button").click(function() {
$(".mod_box").hide();
});
$(".sceditor-button-source").click(function() {
$(".sceditor-button-staff").removeClass("disabled");
});
if (_userdata.user_level === 1 | _userdata.user_level === 2) $(".sceditor-group:last-child").before('<div class="sceditor-group"><a class="sceditor-button sceditor-button-staff" title="Moderação"><div unselectable="on">Moderação</div></a><div class="mod_box" style="display: none;"><ul class="mod_groups" id="mod_box_i">' + list + '<li class="copyright_e"> :fingerprint:️️️️️️️ Criado by -Kisthy.BAN/Breno</li></div></div></div>');
});
});
Até mais!
Re: Alinhamento do botão de resposta automática.
Obrigado, mas, irei abrir outro tópico que tem haver com esta mesma dúvida. Caso possa responder, fico grato.
Pode fechar.
Pode fechar.
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos