smaller GUI adjustments

This commit is contained in:
DJ2LS 2022-11-10 13:02:17 +01:00
parent ec9647a1d8
commit 2c183af8c8
2 changed files with 11 additions and 4 deletions

View file

@ -614,7 +614,7 @@ update_chat = function(obj) {
<div class="card border-light bg-light" id="msg-${obj._id}">
${fileheader}
<div class="card-body p-0">
<div class="card-body rounded-3 p-0">
<p class="card-text p-2 mb-0 text-break text-wrap">${message_html}</p>
<p class="text-right mb-0 p-1 text-white" style="text-align: left; font-size : 0.9rem">
<span class="badge bg-light text-muted">${timestamp}</span>
@ -655,7 +655,7 @@ update_chat = function(obj) {
<div class="card border-primary bg-primary" id="msg-${obj._id}">
${fileheader}
<div class="card-body p-0 text-right bg-primary">
<div class="card-body rounded-3 p-0 text-right bg-primary">
<p class="card-text p-1 mb-0 text-white text-break text-wrap">${message_html}</p>
<p class="text-right mb-0 p-1 text-white" style="text-align: right; font-size : 0.9rem">
<span class="text-light" style="font-size: 0.7rem;">${timestamp} - </span>

View file

@ -37,7 +37,7 @@ html {
padding: 1px;
}
/* ------ fixed border table header --------- */
.tableFixHead {
overflow: auto;
height: 90vh;
@ -47,4 +47,11 @@ height: 90vh;
/* Just common table stuff. Really. */
table { border-collapse: collapse; width: 100%; }
th, td { padding: 8px 16px; }
th { background:#eee; }
th { background:#eee; }
/* ------ emoji picker customization --------- */
.picker {
border-radius: 10px:
}