[mirotalk] - improve send private msg UI

This commit is contained in:
Miroslav Pejic
2022-01-16 13:05:35 +01:00
parent 670002524c
commit 18f6afa7b1
2 changed files with 8 additions and 11 deletions
+7 -10
View File
@@ -679,6 +679,7 @@ button:hover {
#msgerVideoUrlBtn,
#msgerEmojiBtn,
#msgerCPBtn,
#msgerSendBtn {
background: rgb(0, 0, 0);
color: #fff;
@@ -687,6 +688,7 @@ button:hover {
#msgerVideoUrlBtn:hover,
#msgerEmojiBtn:hover,
#msgerCPBtn:hover,
#msgerSendBtn:hover {
color: var(--hover-color);
transform: var(--btns-hover-scale);
@@ -700,17 +702,12 @@ button:hover {
#msgerCP {
z-index: 11;
display: none;
cursor: default;
top: var(--msger-top);
left: var(--msger-left);
height: var(--msger-height);
width: var(--msger-width);
background: var(--msger-private-bg);
/* center */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
bottom: 55px;
width: 100%;
height: 50%;
cursor: default;
background: var(--msger-private-bg);
/* fade in */
-webkit-animation: fadeIn ease-in 1;
-moz-animation: fadeIn ease-in 1;
+1 -1
View File
@@ -109,7 +109,6 @@ access to use this app.
<div class="msger-header-title"><i class="fas fa-comment-alt"></i> Chat</div>
<div class="msger-header-options">
<button id="msgerTheme" class="fas fa-ghost"></button>
<button id="msgerCPBtn" class="fas fa-users"></button>
<button id="msgerClean" class="fas fa-trash"></button>
<button id="msgerSaveBtn" class="fas fa-save"></button>
<button id="msgerClose" class="fas fa-times"></button>
@@ -133,6 +132,7 @@ access to use this app.
<input id="msgerInput" class="msger-input" type="text" placeholder="💬 Enter your message..." />
<button id="msgerVideoUrlBtn" class="fab fa-youtube"></button>
<button id="msgerEmojiBtn" class="fas fa-smile"></button>
<button id="msgerCPBtn" class="fas fa-users"></button>
<button id="msgerSendBtn" class="fas fa-paper-plane"></button>
</div>
</section>