mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 22:58:18 +08:00
825a0af4a9
* add unknown device icon * add device type and verification icon component * test * stylelint * fix securitycard spacing Co-authored-by: Travis Ralston <travisr@matrix.org>
75 lines
1.7 KiB
Plaintext
75 lines
1.7 KiB
Plaintext
/*
|
|
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_DeviceSecurityCard {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
box-sizing: border-box;
|
|
|
|
padding: $spacing-16;
|
|
|
|
border: 1px solid $quinary-content;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.mx_DeviceSecurityCard_icon {
|
|
flex: 0 0 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: $spacing-16;
|
|
border-radius: 8px;
|
|
|
|
height: 40px;
|
|
width: 40px;
|
|
|
|
color: var(--icon-color);
|
|
background-color: var(--background-color);
|
|
|
|
&.Verified {
|
|
--icon-color: $e2e-verified-color;
|
|
--background-color: $e2e-verified-color-light;
|
|
}
|
|
|
|
&.Unverified {
|
|
--icon-color: $e2e-warning-color;
|
|
--background-color: $e2e-warning-color-light;
|
|
}
|
|
|
|
&.Inactive {
|
|
--icon-color: $secondary-content;
|
|
--background-color: $system;
|
|
}
|
|
}
|
|
|
|
.mx_DeviceSecurityCard_content {
|
|
flex: 1 1;
|
|
}
|
|
.mx_DeviceSecurityCard_heading {
|
|
margin: 0 0 $spacing-4 0;
|
|
}
|
|
.mx_DeviceSecurityCard_description {
|
|
margin: 0;
|
|
font-size: $font-12px;
|
|
color: $secondary-content;
|
|
}
|
|
|
|
.mx_DeviceSecurityCard_actions {
|
|
margin-top: $spacing-16;
|
|
}
|