020620 general layout and css improvements.

This commit is contained in:
Daisuke
2020-06-02 17:37:50 -05:00
parent 153cee6105
commit d25fbc8bea
10 changed files with 1802 additions and 551 deletions

View File

@ -18,14 +18,12 @@ $('body').on('click', '.toggleblur', function(e) {
});
$('body').on('click', '#emoji', function(e) {
$(this).closest(".element").find('.picker').css("display","none");
$(this).closest(".element").find('.picker').css("display","block");
$(this).closest(".element").find('.picker').toggle();
$('#emojisearch').focus();
});
$('body').on('click', '#contact', function(e) {
$(this).closest(".element").find('.contactpicker').css("display","none");
$(this).closest(".element").find('.contactpicker').css("display","block");
$(this).closest(".element").find('.contactpicker').toggle();
$('#contactsearch').focus();
});
@ -43,11 +41,6 @@ $('body').on('click', '.contact', function(e) {
$(this).closest(".element").find("#status").val(boxtxt + code+" ");
});
$('body').on('click', '.close', function(e) {
$(this).next().html("");
$(this).parent('div').css("display","none");
});
$(document).on("change paste keyup","#emojisearch",function () {
var val = $(this).val();
var list = $(this).closest('.element').find('.emojilist');