Add setting for voice mode and PTT key

This commit is contained in:
Jonas Herzig 2017-09-19 22:40:54 +02:00
parent ef14f9b61f
commit c49dabbfc4
3 changed files with 115 additions and 15 deletions

View file

@ -195,7 +195,7 @@ form {
.message-content p {
margin: 0;
}
.tb-information, .tb-record, .tb-comment, .tb-settings{
.tb-information, .tb-record, .tb-comment {
filter: grayscale(100%);
}
.dialog-header {
@ -230,17 +230,38 @@ form {
text-align: center;
width: 100%
}
.connect-dialog {
.dialog {
position: absolute;
width: 300px;
height: 227px;
top: calc(50% - 100px);
left: calc(50% - 150px);
background-color: #eee;
border: 1px gray solid;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
z-index: 20;
}
.settings-dialog {
width: 300px;
height: 156px;
top: calc(50% - 100px);
left: calc(50% - 150px);
}
.settings-dialog table {
width: 100%;
padding: 5px;
}
.settings-dialog td {
width: 50%;
}
.settings-dialog table select {
width: 100%;
}
.settings-dialog table input {
width: 100%;
}
.connect-dialog {
width: 300px;
height: 227px;
top: calc(50% - 100px);
left: calc(50% - 150px);
}
.connect-dialog input[type=text] {
font-size: 15px;
border: 1px gray solid;