Merge branch 'ent-3699-descuadre-visual-recuperar-password' into 'develop'

Ent 3699 descuadre visual recuperar password

See merge request artica/pandorafms!2336
This commit is contained in:
Daniel Rodriguez 2019-06-25 14:26:57 +02:00
commit 01514ba5b6
2 changed files with 360 additions and 339 deletions

View File

@ -2,12 +2,14 @@
$.fn.check = function() {
return this.each(function() {
this.checked = true;
});};
});
};
$.fn.uncheck = function() {
return this.each(function() {
this.checked = false;
});};
});
};
$.fn.enable = function() {
return $(this).removeAttr("disabled");
@ -20,26 +22,34 @@
$.fn.pulsate = function() {
var i = 0;
for (i = 0; i <= 2; i++) {
$(this).fadeOut ("slow").fadeIn ("slow");
$(this)
.fadeOut("slow")
.fadeIn("slow");
}
};
$.fn.showMessage = function(msg) {
return $(this).hide ().empty ()
return (
$(this)
.hide()
.empty()
// here, previously .text (msg)
.html(msg)
.slideDown ();
.slideDown()
);
};
})(jQuery);
$(document).ready(function() {
$("a#show_messages_dialog").click(function() {
jQuery.post ("ajax.php",
jQuery.post(
"ajax.php",
{
"page": "operation/messages/message_list"
page: "operation/messages/message_list"
},
function(data, status) {
$("#dialog_messages").hide ()
$("#dialog_messages")
.hide()
.empty()
.append(data)
.dialog({
@ -52,7 +62,8 @@ $(document).ready (function () {
},
width: 700,
height: 300
}).show ();
})
.show();
},
"html"
);
@ -61,17 +72,22 @@ $(document).ready (function () {
});
$("a.show_systemalert_dialog").click(function() {
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
$("#opacidad").css('opacity', 0.5);
$("body").append(
"<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>"
);
$("#opacidad").css("opacity", 0.5);
jQuery.post ("ajax.php",
jQuery.post(
"ajax.php",
{
"page": "operation/system_alert"},
page: "operation/system_alert"
},
function(data, status) {
$("#alert_messages").show();
$("#alert_messages").empty ().append (data);
$("#alert_messages").css('opacity', 1);
$("#alert_messages")
.empty()
.append(data);
$("#alert_messages").css("opacity", 1);
},
"html"
);
@ -79,18 +95,23 @@ $(document).ready (function () {
$("a.modalpopup").click(function() {
var elem = $(this).attr("id");
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
$("#opacidad").css('opacity', 0.5);
$("body").append(
"<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>"
);
$("#opacidad").css("opacity", 0.5);
jQuery.post ("ajax.php",
jQuery.post(
"ajax.php",
{
"page": "general/alert_enterprise",
"message": elem
page: "general/alert_enterprise",
message: elem
},
function(data, status) {
$("#alert_messages").show();
$("#alert_messages").empty ().append (data);
$("#alert_messages").css('opacity', 1);
$("#alert_messages")
.empty()
.append(data);
$("#alert_messages").css("opacity", 1);
},
"html"
);
@ -100,63 +121,67 @@ $(document).ready (function () {
// Creacion de ventana modal y botones
$(".publienterprise").click(function() {
var elem = $(this).attr("id");
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
$("#opacidad").css('opacity', 0.5);
$("body").append(
"<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>"
);
$("#opacidad").css("opacity", 0.5);
jQuery.post ("ajax.php",
jQuery.post(
"ajax.php",
{
"page": "general/alert_enterprise",
"message": elem
page: "general/alert_enterprise",
message: elem
},
function(data, status) {
$("#alert_messages").show();
$("#alert_messages").empty ().append (data);
$("#alert_messages").css('opacity', 1);
$("#alert_messages")
.empty()
.append(data);
$("#alert_messages").css("opacity", 1);
},
"html"
);
return false;
});
$(".publienterprisehide").click(function() {
var elem = $(this).attr("id");
$('body').append( "<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>" );
$("#opacidad").css('opacity', 0.5);
$("body").append(
"<div id='opacidad' style='position:fixed;background:black;z-index:1'></div>"
);
$("#opacidad").css("opacity", 0.5);
jQuery.post ("ajax.php",
jQuery.post(
"ajax.php",
{
"page": "general/alert_enterprise",
"message": elem
page: "general/alert_enterprise",
message: elem
},
function(data, status) {
$("#alert_messages").show();
$("#alert_messages").empty ().append (data);
$("#alert_messages").css('opacity', 1);
$("#alert_messages")
.empty()
.append(data);
$("#alert_messages").css("opacity", 1);
},
"html"
);
return false;
});
if ($("#license_error_msg_dialog").length) {
if (typeof process_login_ok == "undefined") process_login_ok = 0;
if ($('#license_error_msg_dialog').length) {
if (typeof(process_login_ok) == "undefined")
process_login_ok = 0;
if (typeof(show_error_license) == "undefined")
show_error_license = 0;
if (typeof show_error_license == "undefined") show_error_license = 0;
if (process_login_ok || show_error_license) {
$("#license_error_msg_dialog").dialog({
dialogClass: "no-close",
closeOnEscape: false,
resizable: false,
draggable: true,
modal: true,
height: 450,
height: 470,
width: 850,
overlay: {
opacity: 0.5,
@ -175,38 +200,33 @@ $(document).ready (function () {
$("#ok_buttom").show();
clearInterval(count);
}
}
};
setInterval(count, 1000);
}
});
$("#submit-hide-license-error-msg").click(function() {
$("#license_error_msg_dialog" ).dialog('close')
$("#license_error_msg_dialog").dialog("close");
});
}
}
if ($('#msg_change_password').length) {
if ($("#msg_change_password").length) {
$("#msg_change_password").dialog({
resizable: false,
draggable: true,
modal: true,
height: 350,
height: 450,
width: 620,
overlay: {
opacity: 0.5,
background: "black"
}
});
}
if ($('#login_blocked').length) {
if ($("#login_blocked").length) {
$("#login_blocked").dialog({
resizable: true,
draggable: true,
@ -218,11 +238,9 @@ $(document).ready (function () {
background: "black"
}
});
}
if ($('#login_correct_pass').length) {
if ($("#login_correct_pass").length) {
$("#login_correct_pass").dialog({
resizable: true,
draggable: true,
@ -234,40 +252,40 @@ $(document).ready (function () {
background: "black"
}
});
}
forced_title_callback();
$(document).on("scroll", function() {
if(document.documentElement.scrollTop != 0 || document.body.scrollTop != 0){
if($('#head').css('position') =='fixed'){
if($('#menu').css('position') =='fixed'){
$('#menu').css('top','80px');
if (
document.documentElement.scrollTop != 0 ||
document.body.scrollTop != 0
) {
if ($("#head").css("position") == "fixed") {
if ($("#menu").css("position") == "fixed") {
$("#menu").css("top", "80px");
} else {
$('#menu').css('top','60px');
$("#menu").css("top", "60px");
}
} else {
if($('#menu').css('position') =='fixed'){
$('#menu').css('top','20px');
if ($("#menu").css("position") == "fixed") {
$("#menu").css("top", "20px");
} else {
$('#menu').css('top','80px');
$("#menu").css("top", "80px");
}
}
} else {
if($('#head').css('position') =='fixed'){
if($('#menu').css('position') =='fixed'){
$('#menu').css('top','80px');
if ($("#head").css("position") == "fixed") {
if ($("#menu").css("position") == "fixed") {
$("#menu").css("top", "80px");
} else {
$('#menu').css('top','60px');
$("#menu").css("top", "60px");
}
} else {
if($('#menu').css('position') =='fixed'){
$('#menu').css('top','80px');
if ($("#menu").css("position") == "fixed") {
$("#menu").css("top", "80px");
} else {
$('#menu').css('top','80px');
$("#menu").css("top", "80px");
}
}
}
@ -296,21 +314,22 @@ $(document).ready (function () {
});
$("#alert_messages").draggable();
$("#alert_messages").css({'left':+parseInt(screen.width/2)-parseInt($("#alert_messages").css('width'))/2+'px'});
$("#alert_messages").css({
left:
+parseInt(screen.width / 2) -
parseInt($("#alert_messages").css("width")) / 2 +
"px"
});
});
function forced_title_callback() {
// Forced title code
$('body').on('mouseenter', '.forced_title', function() {
$("body").on("mouseenter", ".forced_title", function() {
///////////////////////////////////////////
// Put the layer in the left-top corner to fill it
///////////////////////////////////////////
$('#forced_title_layer').css('left', 0);
$('#forced_title_layer').css('top', 0);
$("#forced_title_layer").css("left", 0);
$("#forced_title_layer").css("top", 0);
///////////////////////////////////////////
// Get info of the image
@ -319,8 +338,8 @@ function forced_title_callback() {
var img_top = $(this).offset().top;
var img_width = $(this).width();
var img_height = $(this).height();
var img_id = $(this).attr('id');
var img_left_mid = $(this).offset().left + (img_width / 2);
var img_id = $(this).attr("id");
var img_left_mid = $(this).offset().left + img_width / 2;
///////////////////////////////////////////
// Put title in the layer
@ -331,19 +350,18 @@ function forced_title_callback() {
// content.
if ($(this).data("use_title_for_force_title")) {
var title = $(this).data("title");
}
else {
var title = $('#forced_title_'+img_id).html();
} else {
var title = $("#forced_title_" + img_id).html();
}
$('#forced_title_layer').html(title);
$("#forced_title_layer").html(title);
///////////////////////////////////////////
// Get info of the layer
///////////////////////////////////////////
var layer_width = $('#forced_title_layer').width();
var layer_height = $('#forced_title_layer').height();
var layer_width = $("#forced_title_layer").width();
var layer_height = $("#forced_title_layer").height();
///////////////////////////////////////////
// Obtain the new position of the layer
@ -353,18 +371,18 @@ function forced_title_callback() {
var layer_padding = 4;
// Deduct padding of both sides
var layer_top = img_top - layer_height - (layer_padding * 2) - 5;
var layer_top = img_top - layer_height - layer_padding * 2 - 5;
if (layer_top < 0) {
layer_top = img_top + img_height + (layer_padding * 2);
layer_top = img_top + img_height + layer_padding * 2;
}
// Deduct padding of one side
var layer_left = img_left_mid - (layer_width / 2) - layer_padding;
var layer_left = img_left_mid - layer_width / 2 - layer_padding;
if (layer_left < 0) {
layer_left = 0;
}
var real_layer_width = layer_width + (layer_padding * 2) + 5;
var real_layer_width = layer_width + layer_padding * 2 + 5;
var layer_right = layer_left + real_layer_width;
var screen_width = $(window).width();
if (screen_width < layer_right) {
@ -375,12 +393,13 @@ function forced_title_callback() {
// Set the layer position and show
///////////////////////////////////////////
$('#forced_title_layer').css('left', layer_left);
$('#forced_title_layer').css('top', layer_top);
$('#forced_title_layer').show();
$("#forced_title_layer").css("left", layer_left);
$("#forced_title_layer").css("top", layer_top);
$("#forced_title_layer").show();
});
$('body').on('mouseout', '.forced_title', function () {
$('#forced_title_layer').hide().empty();
$("body").on("mouseout", ".forced_title", function() {
$("#forced_title_layer")
.hide()
.empty();
});
}

View File

@ -406,6 +406,8 @@ div.form_message_alert ul li input {
}
div.form_message_alert ul li label {
display: inline-block;
width: 145px;
font-size: 10pt;
padding-right: 20px;
}