tweak MemberInfo CSS

This commit is contained in:
Matthew Hodgson 2016-09-15 02:44:34 +01:00
parent cb2c2c1b36
commit 2a85b2271c
2 changed files with 25 additions and 7 deletions

View File

@ -26,27 +26,44 @@ limitations under the License.
text-align: center; text-align: center;
padding-left: 1em; padding-left: 1em;
padding-right: 1em; padding-right: 1em;
width: 95px;
border: 0px;
font-size: 14px;
cursor: pointer; cursor: pointer;
display: inline; display: inline;
} }
.mx_MemberDeviceInfo_deviceId {
font-size: 13px;
}
.mx_MemberDeviceInfo_deviceInfo {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.mx_MemberDeviceInfo_block,
.mx_MemberDeviceInfo_unblock {
float: right;
}
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified, .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified,
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified, .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified,
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blocked { .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blocked {
width: 17px; float: right;
border-radius: 17px; padding-left: 1em;
text-align: center;
} }
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified { .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified {
color: #76cfa6; color: #76cfa5;
} }
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified { .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified {
color: #b2b2b2; color: #e8bf37;
} }
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blocked { .mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blocked {
color: #e55e5e; color: #ba6363;
} }

View File

@ -16,6 +16,7 @@ limitations under the License.
.mx_MemberInfo { .mx_MemberInfo {
margin-top: 20px; margin-top: 20px;
margin-right: 20px;
height: 100%; height: 100%;
overflow-y: auto; overflow-y: auto;
} }
@ -26,7 +27,7 @@ limitations under the License.
.mx_MemberInfo_cancel { .mx_MemberInfo_cancel {
float: right; float: right;
margin-right: 18px; margin-right: 10px;
cursor: pointer; cursor: pointer;
} }