User table UI

This commit is contained in:
cuom1999 2021-12-27 17:18:04 +07:00
parent a026b034e6
commit 4e0dbbcd79
6 changed files with 61 additions and 15 deletions

View file

@ -50,11 +50,22 @@
}
}
}).trigger('hashchange');
$('.about-td').on('click', function() {
var max_height = $(this).css('max-height');
if (max_height !== 'fit-content') {
$(this).css('max-height', 'fit-content');
}
else {
$(this).css('max-height', '45px');
}
})
});
</script>
{% endblock %}
{% block media %}
<link href="http://fonts.cdnfonts.com/css/jersey-m54" rel="stylesheet">
{% block users_media %}{% endblock %}
{% endblock %}