s/MemberTile/EntityTile/

This commit is contained in:
Kegan Dougal 2016-01-18 16:43:00 +00:00
parent 0ef03c5ca4
commit fef02f2fd1

View File

@ -14,14 +14,23 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
.mx_MemberTile { .mx_EntityTile {
display: table-row; display: table-row;
position: relative; position: relative;
color: #454545; color: #454545;
cursor: pointer; cursor: pointer;
} }
.mx_MemberTile_avatar { .mx_EntityTile_invite {
display: table-cell;
vertical-align: middle;
}
.mx_EntityTile:hover .mx_MessageTimestamp {
display: block;
}
.mx_EntityTile_avatar {
display: table-cell; display: table-cell;
padding-left: 3px; padding-left: 3px;
padding-right: 12px; padding-right: 12px;
@ -33,66 +42,44 @@ limitations under the License.
position: relative; position: relative;
} }
.mx_MemberTile_power { .mx_EntityTile_name {
position: absolute;
width: 16px;
height: 17px;
top: 0px;
right: 6px;
}
.mx_MemberTile_name {
display: table-cell; display: table-cell;
vertical-align: middle; vertical-align: middle;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.mx_MemberTile_details { .mx_EntityTile_details {
display: table-cell; display: table-cell;
padding-right: 14px; padding-right: 14px;
vertical-align: middle; vertical-align: middle;
} }
.mx_MemberTile_userId { .mx_EntityTile_name_hover {
font-size: 13px; font-size: 13px;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.mx_MemberTile_chevron { .mx_EntityTile_chevron {
margin-top: 8px; margin-top: 8px;
margin-right: -4px; margin-right: -4px;
margin-left: 6px; margin-left: 6px;
float: right; float: right;
} }
/* .mx_EntityTile_unavailable .mx_EntityTile_avatar,
.mx_MemberTile_nameWrapper { .mx_EntityTile_unavailable .mx_EntityTile_name,
display: table-cell; .mx_EntityTile_unavailable .mx_EntityTile_name_hover
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
}
.mx_MemberTile_nameSpan {
}
*/
.mx_MemberTile_unavailable .mx_MemberTile_avatar,
.mx_MemberTile_unavailable .mx_MemberTile_name,
.mx_MemberTile_unavailable .mx_MemberTile_userId
{ {
opacity: 0.66; opacity: 0.66;
} }
.mx_MemberTile_offline .mx_MemberTile_avatar, .mx_EntityTile_offline .mx_EntityTile_avatar,
.mx_MemberTile_offline .mx_MemberTile_name, .mx_EntityTile_offline .mx_EntityTile_name,
.mx_MemberTile_offline .mx_MemberTile_userId .mx_EntityTile_offline .mx_EntityTile_name_hover
{ {
opacity: 0.25; opacity: 0.25;
} }
.mx_MemberTile:hover .mx_MessageTimestamp {
display: block;
}