83 lines
1.8 KiB
CSS
83 lines
1.8 KiB
CSS
/*
|
|
Copyright 2015, 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_AddressTile {
|
|
display: inline-block;
|
|
border-radius: 3px;
|
|
background-color: rgba(74, 73, 74, 0.1);
|
|
border: solid 1px #f0f0f0;
|
|
line-height: 26px;
|
|
color: #454545;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.mx_AddressTile_network {
|
|
display: inline-block;
|
|
position: relative;
|
|
padding-left: 2px;
|
|
padding-right: 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mx_AddressTile_avatar {
|
|
display: inline-block;
|
|
position: relative;
|
|
padding-left: 2px;
|
|
padding-right: 7px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mx_AddressTile_name {
|
|
display: inline-block;
|
|
padding-right: 4px;
|
|
font-weight: 600;
|
|
overflow: hidden;
|
|
height: 26px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mx_AddressTile_name.mx_AddressTile_justified {
|
|
width: 180px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mx_AddressTile_id {
|
|
display: inline-block;
|
|
padding-right: 11px;
|
|
}
|
|
|
|
.mx_AddressTile_id.mx_AddressTile_justified {
|
|
width: 200px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.mx_AddressTile_dismiss {
|
|
display: inline-block;
|
|
padding-right: 11px;
|
|
padding-left: 1px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_AddressTile_dismiss object {
|
|
pointer-events: none;
|
|
}
|