forked from matrix/element-web
fix up new message layout
This commit is contained in:
parent
9c215efcbf
commit
8ebb8ba427
|
@ -174,19 +174,15 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomView_unreadMessagesBar {
|
.mx_RoomView_unreadMessagesBar {
|
||||||
margin-top: 13px;
|
color: #ff0064;
|
||||||
color: #fff;
|
|
||||||
font-weight: bold;
|
|
||||||
background-color: #ff0064;
|
|
||||||
border-radius: 30px;
|
|
||||||
height: 30px;
|
|
||||||
line-height: 30px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomView_unreadMessagesBar img {
|
.mx_RoomView_unreadMessagesBar img {
|
||||||
padding-left: 22px;
|
padding-left: 10px;
|
||||||
padding-right: 22px;
|
padding-right: 22px;
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomView_typingBar {
|
.mx_RoomView_typingBar {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 590 B |
|
@ -175,7 +175,7 @@ module.exports = React.createClass({
|
||||||
if (unreadMsgs) {
|
if (unreadMsgs) {
|
||||||
statusBar = (
|
statusBar = (
|
||||||
<div className="mx_RoomView_unreadMessagesBar" onClick={ this.scrollToBottom }>
|
<div className="mx_RoomView_unreadMessagesBar" onClick={ this.scrollToBottom }>
|
||||||
<img src="img/newmessages.png" width="10" height="12" alt=""/>
|
<img src="img/newmessages.png" width="24" height="24" alt=""/>
|
||||||
{unreadMsgs}
|
{unreadMsgs}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue