Device manager - device details section (#9169)
* add device metadata table * test devicedetails * handle missing last activity metadata * remove debugs * revert tile style changes * fuss with indentation * code formatting
This commit is contained in:
parent
988cd335db
commit
09aade2907
7 changed files with 371 additions and 5 deletions
|
@ -0,0 +1,70 @@
|
|||
/*
|
||||
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;
|
||||
|
||||
width: 100%;
|
||||
|
||||
padding: $spacing-16;
|
||||
border-radius: 8px;
|
||||
border: 1px solid $system;
|
||||
}
|
||||
|
||||
.mx_DeviceDetails_section {
|
||||
padding-bottom: $spacing-16;
|
||||
margin-bottom: $spacing-16;
|
||||
border-bottom: 1px solid $system;
|
||||
|
||||
&: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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue