Create GUI for onionshare chat mode with the tab workflow

This commit is contained in:
Saptak S 2020-03-09 17:44:00 +05:30
parent 2c938fd777
commit 819e406d46
No known key found for this signature in database
GPG key ID: 2D9B32E54C68A3FB
8 changed files with 214 additions and 2 deletions

View file

@ -130,6 +130,26 @@ table.file-list td:last-child {
width: 100%;
}
.chat-wrapper {
display: flex;
flex-direction: column;
margin: 0 1rem;
height: calc(100vh - (45px + 2em));
}
.chat-wrapper #chat {
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 2px;
flex: 1;
overflow: auto;
background: #f2f2f2;
padding: 0 1rem;
}
.chat-wrapper .chat-form {
display: flex;
}
.upload-wrapper {
align-items: center;
justify-content: center;