52 lines
1.3 KiB
CSS
52 lines
1.3 KiB
CSS
/*
|
|
Copyright 2016 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_MemberDeviceInfo {
|
|
padding: 10px 0px;
|
|
}
|
|
|
|
|
|
.mx_MemberDeviceInfo_textButton {
|
|
color: #fff;
|
|
background-color: #76cfa6;
|
|
border-radius: 17px;
|
|
text-align: center;
|
|
padding-left: 1em;
|
|
padding-right: 1em;
|
|
|
|
cursor: pointer;
|
|
display: inline;
|
|
}
|
|
|
|
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified,
|
|
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified,
|
|
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blocked {
|
|
width: 17px;
|
|
border-radius: 17px;
|
|
text-align: center;
|
|
}
|
|
|
|
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_verified {
|
|
color: #76cfa6;
|
|
}
|
|
|
|
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_unverified {
|
|
color: #b2b2b2;
|
|
}
|
|
|
|
.mx_MemberDeviceInfo div.mx_MemberDeviceInfo_blocked {
|
|
color: #e55e5e;
|
|
}
|