2019-11-07 17:39:50 +01:00
|
|
|
/*
|
2020-01-30 21:03:26 +01:00
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
2019-11-07 17:39:50 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-01-30 21:03:26 +01:00
|
|
|
.mx_cryptoEvent {
|
2020-07-20 15:09:16 +02:00
|
|
|
// 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;
|
2021-06-23 17:10:47 +02:00
|
|
|
mask-size: 80%;
|
2020-07-20 15:09:16 +02:00
|
|
|
}
|
|
|
|
|
2020-11-04 18:00:07 +01:00
|
|
|
&.mx_cryptoEvent_icon::after {
|
|
|
|
mask-image: url('$(res)/img/e2e/normal.svg');
|
|
|
|
background-color: $composer-e2e-icon-color;
|
|
|
|
}
|
|
|
|
|
2020-01-30 21:03:26 +01:00
|
|
|
&.mx_cryptoEvent_icon_verified::after {
|
2020-07-20 15:09:16 +02:00
|
|
|
mask-image: url("$(res)/img/e2e/verified.svg");
|
|
|
|
background-color: $accent-color;
|
2019-11-07 17:39:50 +01:00
|
|
|
}
|
|
|
|
|
2020-01-30 21:03:26 +01:00
|
|
|
&.mx_cryptoEvent_icon_warning::after {
|
2020-07-20 15:09:16 +02:00
|
|
|
mask-image: url("$(res)/img/e2e/warning.svg");
|
|
|
|
background-color: $notice-primary-color;
|
2020-01-30 21:03:26 +01:00
|
|
|
}
|
|
|
|
|
2019-11-07 17:39:50 +01:00
|
|
|
|
2020-01-30 21:03:26 +01:00
|
|
|
.mx_cryptoEvent_state, .mx_cryptoEvent_buttons {
|
2019-11-07 17:39:50 +01:00
|
|
|
grid-column: 3;
|
|
|
|
grid-row: 1 / 3;
|
|
|
|
}
|
|
|
|
|
2020-01-30 21:03:26 +01:00
|
|
|
.mx_cryptoEvent_buttons {
|
2019-11-07 17:39:50 +01:00
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2021-07-01 16:22:44 +02:00
|
|
|
gap: 5px;
|
2019-11-07 17:39:50 +01:00
|
|
|
}
|
|
|
|
|
2020-01-30 21:03:26 +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: $notice-secondary-color;
|
2020-11-04 18:00:07 +01:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
font-size: $font-12px;
|
2019-11-07 17:39:50 +01:00
|
|
|
}
|
|
|
|
}
|