Files
ThreadNet-Web/res/css/views/messages/_common_CryptoEvent.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-11-07 17:39:50 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
2019-11-07 17:39:50 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2019-11-07 17:39:50 +01:00
*/
.mx_EventTileBubble.mx_cryptoEvent {
margin: var(--EventTileBubble_margin-block) auto;
/* white infill for the transparency */
&.mx_cryptoEvent_icon::before {
background-color: #ffffff;
mask-image: url("$(res)/img/e2e/normal.svg");
mask-repeat: no-repeat;
mask-position: center;
mask-size: 80%;
}
&.mx_cryptoEvent_icon::after {
mask-image: url("$(res)/img/e2e/normal.svg");
2021-11-16 11:10:44 +01:00
background-color: $header-panel-text-primary-color;
}
&.mx_cryptoEvent_icon_verified::after {
mask-image: url("$(res)/img/e2e/verified.svg");
2021-11-11 14:37:29 +01:00
background-color: $accent;
2019-11-07 17:39:50 +01:00
}
&.mx_cryptoEvent_icon_warning::after {
mask-image: url("$(res)/img/e2e/warning.svg");
background-color: $e2e-warning-color;
}
.mx_cryptoEvent_state,
.mx_cryptoEvent_buttons {
2019-11-07 17:39:50 +01:00
grid-column: 3;
grid-row: 1 / 3;
}
.mx_cryptoEvent_buttons {
2019-11-07 17:39:50 +01:00
align-items: center;
display: flex;
2021-07-01 15:22:44 +01:00
gap: 5px;
2019-11-07 17:39:50 +01:00
}
.mx_cryptoEvent_state {
2019-11-07 17:39:50 +01:00
width: 130px;
padding: 10px 20px;
margin: auto 0;
text-align: center;
color: $tertiary-content;
overflow-wrap: break-word;
font-size: $font-12px;
2019-11-07 17:39:50 +01:00
}
}