2022-08-11 17:13:17 +08:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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_DeviceDetails {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-08-15 23:30:18 +08:00
|
|
|
box-sizing: border-box;
|
2022-08-11 17:13:17 +08:00
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
2022-08-15 23:30:18 +08:00
|
|
|
margin-top: $spacing-16;
|
2022-08-11 17:13:17 +08:00
|
|
|
padding: $spacing-16;
|
|
|
|
border-radius: 8px;
|
2022-08-15 23:30:18 +08:00
|
|
|
border: 1px solid $quinary-content;
|
2022-08-11 17:13:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DeviceDetails_section {
|
|
|
|
padding-bottom: $spacing-16;
|
|
|
|
margin-bottom: $spacing-16;
|
2022-08-15 23:30:18 +08:00
|
|
|
border-bottom: 1px solid $quinary-content;
|
2022-08-11 17:13:17 +08:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
border-bottom: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_DeviceDetails_sectionHeading {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mxDeviceDetails_metadataTable {
|
|
|
|
font-size: $font-12px;
|
|
|
|
color: $secondary-content;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
margin-top: $spacing-20;
|
|
|
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
|
|
|
th {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding-top: $spacing-8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mxDeviceDetails_metadataLabel {
|
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mxDeviceDetails_metadataValue {
|
|
|
|
color: $primary-content;
|
|
|
|
}
|
|
|
|
}
|