mirror of https://github.com/vector-im/riot-web
77 lines
1.5 KiB
CSS
77 lines
1.5 KiB
CSS
/*
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.mx_MessageTile {
|
|
max-width: 100%;
|
|
clear: both;
|
|
margin-top: 32px;
|
|
margin-left: 56px;
|
|
}
|
|
|
|
.mx_MessageTile_avatar {
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
margin-left: -64px;
|
|
margin-top: -7px;
|
|
float: left;
|
|
}
|
|
|
|
.mx_MessageTile_avatar img {
|
|
background-color: #dbdbdb;
|
|
border-radius: 20px;
|
|
border: 0px;
|
|
}
|
|
|
|
.mx_MessageTile_continuation {
|
|
margin-top: 8px ! important;
|
|
}
|
|
|
|
.mx_MessageTile_continuation .mx_MessageTile_avatar,
|
|
.mx_MessageTile_continuation .mx_SenderProfile
|
|
{
|
|
display: none ! important;
|
|
}
|
|
|
|
.mx_MessageTile .mx_SenderProfile {
|
|
color: #acacac;
|
|
font-size: 13px;
|
|
margin-bottom: 4px;
|
|
display: block;
|
|
}
|
|
|
|
.mx_MessageTile .mx_MessageTimestamp {
|
|
color: #acacac;
|
|
font-size: 13px;
|
|
float: right;
|
|
}
|
|
|
|
.mx_MessageTile_content {
|
|
padding-right: 100px;
|
|
display: block;
|
|
}
|
|
|
|
.mx_MessageTile_sending {
|
|
color: #ddd;
|
|
}
|
|
|
|
.mx_MessageTile_notSent {
|
|
color: #f11;
|
|
}
|
|
|
|
.mx_MessageTile_highlight {
|
|
color: #00f;
|
|
}
|