Voice messages

This commit is contained in:
N-Pex 2021-02-23 22:07:57 +01:00
parent fd86e753fe
commit 3146a0b35a
4 changed files with 303 additions and 99 deletions

View file

@ -137,7 +137,7 @@ $admin-fg: white;
max-height: 30vh;
overflow-x: hidden;
overflow-y: auto;
padding: 0 0 0 0px;
padding: 0 0 0px 20px;
margin: 6px 0;
font-family: 'Inter', sans-serif;
font-weight: 300;
@ -606,10 +606,45 @@ $admin-fg: white;
bottom: 0;
right: 0;
background-color: black;
&.will-cancel {
background-color: grey;
.will-cancel {
background-color: #ff3300;
}
.recording-time {
color: white;
}
.swipe-info {
color: white;
}
.locked {
background-color: black;
}
.error {
background-color: orange;
}
.voice-recorder-lock {
position: relative;
margin-left: 10px;
margin-right: 10px;
width: 20px;
height: 100%;
border: 1px solid black;
border-radius: 10px;
background-color: rgba(white, 0.3);
&.locked {
background-color: rgba(white, 0.8);
}
.thumb {
width: 16px;
height: 16px;
background-color: black;
border-radius: 8px;
position: absolute;
bottom: 1px;
left: 1px;
&.locked {
top: 1px;
bottom: unset;
}
}
}
}