2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
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_UnknownDeviceDialog {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2019-02-12 18:34:35 +01:00
|
|
|
.mx_UnknownDeviceDialog ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
// userid
|
|
|
|
.mx_UnknownDeviceDialog p {
|
|
|
|
font-weight: bold;
|
2020-03-30 19:18:10 +02:00
|
|
|
font-size: 1.067rem;
|
2019-02-12 18:34:35 +01:00
|
|
|
}
|
|
|
|
|
2019-02-01 18:15:19 +01:00
|
|
|
.mx_UnknownDeviceDialog .mx_DeviceVerifyButtons {
|
2019-02-12 18:34:35 +01:00
|
|
|
flex-direction: row !important;
|
2019-02-01 18:15:19 +01:00
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_UnknownDeviceDialog .mx_Dialog_content {
|
|
|
|
margin-bottom: 24px;
|
2020-03-14 00:49:28 +01:00
|
|
|
overflow-y: scroll;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 18:34:35 +01:00
|
|
|
.mx_UnknownDeviceDialog_deviceList > li {
|
|
|
|
padding: 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 18:34:35 +01:00
|
|
|
.mx_UnknownDeviceDialog_deviceList > li > * {
|
|
|
|
padding-bottom: 0;
|
2018-10-26 14:15:16 +02:00
|
|
|
}
|