117 lines
2.1 KiB
CSS
117 lines
2.1 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_EventTile {
|
|
max-width: 100%;
|
|
clear: both;
|
|
margin-top: 24px;
|
|
margin-left: 56px;
|
|
}
|
|
|
|
.mx_EventTile_avatar {
|
|
padding-left: 18px;
|
|
padding-right: 12px;
|
|
margin-left: -64px;
|
|
margin-top: -4px;
|
|
float: left;
|
|
}
|
|
|
|
.mx_EventTile_avatar img {
|
|
background-color: #dbdbdb;
|
|
border-radius: 20px;
|
|
border: 0px;
|
|
}
|
|
|
|
.mx_EventTile_continuation {
|
|
margin-top: 8px ! important;
|
|
}
|
|
|
|
.mx_EventTile .mx_SenderProfile {
|
|
color: #454545;
|
|
opacity: 0.5;
|
|
font-size: 14px;
|
|
margin-bottom: 4px;
|
|
display: block;
|
|
}
|
|
|
|
.mx_EventTile .mx_MessageTimestamp {
|
|
color: #acacac;
|
|
font-size: 12px;
|
|
float: right;
|
|
}
|
|
|
|
.mx_EventTile_line {
|
|
position: relative;
|
|
}
|
|
|
|
.mx_EventTile_content {
|
|
padding-right: 100px;
|
|
display: block;
|
|
}
|
|
|
|
.mx_EventTile_notice .mx_MessageTile_content {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.mx_EventTile_sending {
|
|
color: #ddd;
|
|
}
|
|
|
|
.mx_EventTile_notSent {
|
|
color: #f11;
|
|
}
|
|
|
|
.mx_EventTile_highlight {
|
|
color: #FF0064;
|
|
}
|
|
|
|
.mx_EventTile_msgOption {
|
|
float: right;
|
|
}
|
|
|
|
.mx_MessageTimestamp {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.mx_EventTile_last .mx_MessageTimestamp {
|
|
visibility: visible;
|
|
}
|
|
|
|
.mx_EventTile:hover .mx_MessageTimestamp {
|
|
visibility: visible;
|
|
}
|
|
|
|
.mx_EventTile_editButton {
|
|
position: absolute;
|
|
right: 0px;
|
|
top: 15px;
|
|
visibility: hidden;
|
|
border: 0px;
|
|
outline: none;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.mx_EventTile:hover .mx_EventTile_editButton {
|
|
visibility: visible;
|
|
}
|
|
|
|
.mx_EventTile.menu .mx_EventTile_editButton {
|
|
visibility: visible;
|
|
}
|
|
|
|
.mx_EventTile.menu .mx_MessageTimestamp {
|
|
visibility: visible;
|
|
}
|