74 lines
1.5 KiB
CSS
74 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_MemberInfo {
|
|
text-align: center;
|
|
border: 1px solid #a9dbf4;
|
|
border-radius: 8px;
|
|
background-color: #fff;
|
|
position: absolute;
|
|
width: 200px;
|
|
margin-left: -295px;
|
|
margin-top: 0px;
|
|
z-index: 1000;
|
|
padding: 6px;
|
|
}
|
|
|
|
.mx_MemberInfo_chevron {
|
|
padding: 12px;
|
|
position: absolute;
|
|
right: -21px;
|
|
top: 0px;
|
|
}
|
|
|
|
/*
|
|
* a hacky shim to extend the hitmask of the overlay to overlap
|
|
* better with the main menu itself
|
|
*/
|
|
.mx_MemberInfo_shim {
|
|
position: absolute;
|
|
left: 212px;
|
|
width: 40px;
|
|
height: 100%;
|
|
}
|
|
|
|
.mx_MemberInfo_avatar {
|
|
padding: 6px;
|
|
}
|
|
|
|
.mx_MemberInfo_avatarImg {
|
|
border-radius: 128px;
|
|
}
|
|
|
|
.mx_MemberInfo_field {
|
|
padding: 6px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_MemberInfo_button {
|
|
vertical-align: middle;
|
|
max-width: 100px;
|
|
height: 36px;
|
|
background-color: #50e3c2;
|
|
line-height: 36px;
|
|
border-radius: 36px;
|
|
color: #fff;
|
|
margin: auto;
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
}
|