2022-09-26 15:29:38 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-09-26 15:29:38 +02:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-09-26 15:29:38 +02:00
|
|
|
*/
|
|
|
|
|
2022-10-20 10:04:14 +02:00
|
|
|
/*
|
|
|
|
* Compound icon
|
|
|
|
|
|
|
|
* {@link https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed}
|
|
|
|
*/
|
|
|
|
|
2022-09-26 15:29:38 +02:00
|
|
|
.mx_Icon {
|
2022-10-12 19:21:32 +02:00
|
|
|
box-sizing: border-box;
|
2022-09-26 15:29:38 +02:00
|
|
|
}
|
|
|
|
|
2022-11-22 07:58:37 +01:00
|
|
|
.mx_Icon_accent {
|
|
|
|
color: $accent;
|
|
|
|
}
|
|
|
|
|
2023-02-17 13:35:13 +01:00
|
|
|
.mx_Icon_bg-accent-light {
|
2023-07-12 19:46:49 +02:00
|
|
|
background-color: $accent-300;
|
2023-02-17 13:35:13 +01:00
|
|
|
}
|
|
|
|
|
2022-11-28 15:16:44 +01:00
|
|
|
.mx_Icon_alert {
|
|
|
|
color: $alert;
|
|
|
|
}
|
|
|
|
|
2023-02-17 13:35:13 +01:00
|
|
|
.mx_Icon_circle-40 {
|
|
|
|
border-radius: 20px;
|
|
|
|
flex: 0 0 40px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0 12px;
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
2022-11-18 08:36:20 +01:00
|
|
|
.mx_Icon_8 {
|
|
|
|
flex: 0 0 8px;
|
2022-11-22 07:58:37 +01:00
|
|
|
height: 8px;
|
2022-11-18 08:36:20 +01:00
|
|
|
width: 8px;
|
|
|
|
}
|
|
|
|
|
2023-03-08 11:11:01 +01:00
|
|
|
.mx_Icon_10 {
|
|
|
|
flex: 0 0 10px;
|
|
|
|
height: 10px;
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_Icon_12 {
|
|
|
|
flex: 0 0 12px;
|
|
|
|
height: 12px;
|
|
|
|
width: 12px;
|
|
|
|
}
|
|
|
|
|
2022-09-26 15:29:38 +02:00
|
|
|
.mx_Icon_16 {
|
2022-11-15 10:02:40 +01:00
|
|
|
flex: 0 0 16px;
|
2022-11-22 07:58:37 +01:00
|
|
|
height: 16px;
|
2022-09-26 15:29:38 +02:00
|
|
|
width: 16px;
|
|
|
|
}
|
2022-11-21 08:47:09 +01:00
|
|
|
|
|
|
|
.mx_Icon_24 {
|
|
|
|
flex: 0 0 24px;
|
2022-11-22 07:58:37 +01:00
|
|
|
height: 24px;
|
2022-11-21 08:47:09 +01:00
|
|
|
width: 24px;
|
|
|
|
}
|
2022-11-22 07:58:37 +01:00
|
|
|
|
|
|
|
.mx_Icon_32 {
|
|
|
|
flex: 0 0 32px;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
}
|