From dd752189f1154fe2502756f0b8dd20e0c14b7d7f Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 8 Feb 2017 17:50:59 +0100 Subject: [PATCH 1/2] frio - fix text of input elements disappears behind the button --- view/theme/frio/js/theme.js | 56 +++++++++++++++---------------------- 1 file changed, 23 insertions(+), 33 deletions(-) diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index c149271804..02bbd916d2 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -256,40 +256,30 @@ $(document).ready(function(){ input.val(val); }); + // Set the padding for input elements with inline buttons + // + // In Frio we use some input elemnts where the submit button is visually + // inside the the input field (through css). We need to set a padding-right + // to the input field where the padding value would be at least the width + // of the button. Otherwise long user input would be invisible because it is + // behind the button. + $("body").on('click', '.form-group-search > input', function() { + // Get the width of the button (if the button isn't available + // buttonWidth will be null + var buttonWidth = $(this).next('.form-button-search').outerWidth(); + + if (buttonWidth) { + // Take the width of the button and ad 5px + var newWidth = buttonWidth + 5; + // Set the padding of the input element according + // to the width of the button + $(this).css('padding-right', newWidth); + } + + }); + + }); -//function commentOpenUI(obj, id) { -// $(document).unbind( "click.commentOpen", handler ); -// -// var handler = function() { -// if(obj.value == '{{$comment}}') { -// obj.value = ''; -// $("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty"); -// // Choose an arbitrary tab index that's greater than what we're using in jot (3 of them) -// // The submit button gets tabindex + 1 -// $("#comment-edit-text-" + id).attr('tabindex','9'); -// $("#comment-edit-submit-" + id).attr('tabindex','10'); -// $("#comment-edit-submit-wrapper-" + id).show(); -// } -// }; -// -// $(document).bind( "click.commentOpen", handler ); -//} -// -//function commentCloseUI(obj, id) { -// $(document).unbind( "click.commentClose", handler ); -// -// var handler = function() { -// if(obj.value === '') { -// obj.value = '{{$comment}}'; -// $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty"); -// $("#comment-edit-text-" + id).removeAttr('tabindex'); -// $("#comment-edit-submit-" + id).removeAttr('tabindex'); -// $("#comment-edit-submit-wrapper-" + id).hide(); -// } -// }; -// -// $(document).bind( "click.commentClose", handler ); -//} function openClose(theID) { var elem = document.getElementById(theID); From ad6ba9203ef553aac852b53f3dd2344f69021385 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 8 Feb 2017 18:05:23 +0100 Subject: [PATCH 2/2] fix typo --- view/theme/frio/js/theme.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index 02bbd916d2..0390cfab07 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -258,9 +258,9 @@ $(document).ready(function(){ // Set the padding for input elements with inline buttons // - // In Frio we use some input elemnts where the submit button is visually + // In Frio we use some input elements where the submit button is visually // inside the the input field (through css). We need to set a padding-right - // to the input field where the padding value would be at least the width + // to the input element where the padding value would be at least the width // of the button. Otherwise long user input would be invisible because it is // behind the button. $("body").on('click', '.form-group-search > input', function() {