Onionr/static-data/www/chat/css/convos.css

66 lines
960 B
CSS
Raw Normal View History

2019-07-27 07:29:16 +00:00
.conversationList li{
list-style: none;
padding-top: 1em;
}
.convoListContainer{
margin-left: 1%;
2019-07-27 21:56:06 +00:00
border-radius: 5px;
border: 1px solid black;
overflow-y: scroll;
}
.chatContent{
padding-right: 5%;
}
.connectStatus{
float: right;
2019-08-18 20:10:28 +00:00
}
.friendsTitle{
text-align: center;
display: block;
}
2019-08-19 03:54:36 +00:00
/*
2019-08-18 20:10:28 +00:00
.chatInput{
position: fixed;
bottom: 0;
2019-08-19 03:54:36 +00:00
}
*/
.chatInput{
margin-top: -3em;
2019-08-18 20:10:28 +00:00
}
.chatInput textarea{
resize: none;
2019-08-19 03:54:36 +00:00
}
.chatInput textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: black;
opacity: 1; /* Firefox */
}
.from{
margin-top: 1em;
display: block;
padding-bottom: 0.5em;
}
.chatFeed{
display: block;
max-height: 500px;
overflow-y: scroll;
min-height: 100%;
padding-top: 4em;
transform: rotate(180deg);
direction: rtl;
}
.messageEntry{
transform: rotate(180deg);
direction: ltr;
}
2019-08-19 06:04:35 +00:00
#messageEntryTemplate{
display: none;
}