Skip to content

Commit

Permalink
Fix box z index
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhall committed May 24, 2016
1 parent b1016d6 commit 423e30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var easycopy = {
$('.easycopy a.ezc-thumbs').click(easycopy.thumbsClick);

// Link box, loading box
$('#links').before('<div id="ezc-textcontainer" style="height: 100px; clear: both; margin: 0 20px 20px 20px; padding: 0 !important;"><textarea id="easycopytext" style="width: 922px; height: 98px; padding: 0 !important; margin: 0 !important;" placeholder="Click the x to the right of each link to get started."></textarea></div><div id="ezc-loading" style="position: fixed; bottom: 0; right: 0;">Loading...</div>');
$('#links').before('<div id="ezc-textcontainer" style="height: 100px; clear: both; margin: 0 20px 20px 20px; padding: 0 !important;"><textarea id="easycopytext" style="width: 922px; height: 98px; padding: 0 !important; margin: 0 !important; z-index: 10;" placeholder="Click the x to the right of each link to get started."></textarea></div><div id="ezc-loading" style="position: fixed; bottom: 0; right: 0;">Loading...</div>');
$('#ezc-loading').hide();
$('#easycopytext').focus(function() {$(this).select();});

Expand Down

0 comments on commit 423e30b

Please sign in to comment.