25 lines
362 B
CSS
25 lines
362 B
CSS
.message-input {
|
|
background-color: #EBEBEB;
|
|
}
|
|
|
|
.chat_row box.header {
|
|
font-size: 14px;
|
|
}
|
|
.chat_row box {
|
|
margin: 0;
|
|
}
|
|
.chat_row button {
|
|
opacity: 0;
|
|
transition: opacity .05s;
|
|
}
|
|
.chat_row:hover button {
|
|
opacity: 1;
|
|
}
|
|
.message .delete-message-button {
|
|
opacity: 0;
|
|
transition: opacity .05s;
|
|
}
|
|
.message:hover .delete-message-button {
|
|
opacity: 1;
|
|
}
|