Files
ThreadNet-Web/res/css/views/voip/LegacyCallView/_LegacyCallViewButtons.pcss
T

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

177 lines
5.5 KiB
Plaintext
Raw Normal View History

2021-08-08 11:15:18 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2021, 2022 Šimon Brandner <simon.bra.ag@gmail.com>
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
2021-08-08 11:15:18 +02:00
Copyright 2015, 2016 OpenMarket Ltd
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
2021-08-08 11:15:18 +02:00
*/
/* data-whatintent makes more sense here semantically but then the tooltip would stay visible without the button */
/* which looks broken, so we match the behaviour of tooltips which is fine too. */
[data-whatinput="mouse"] .mx_LegacyCallViewButtons.mx_LegacyCallViewButtons_hidden {
opacity: 0.001; /* opacity 0 can cause a re-layout */
2022-01-04 08:57:46 +00:00
pointer-events: none;
}
.mx_LegacyCallViewButtons {
--LegacyCallViewButtons_dropdownButton-size: 16px;
2021-08-08 11:15:18 +02:00
position: absolute;
display: flex;
justify-content: center;
2022-05-04 17:16:38 +02:00
bottom: 32px;
2021-08-08 11:15:18 +02:00
opacity: 1;
transition: opacity 0.5s;
z-index: 200; /* To be above _all_ feeds */
2021-11-15 18:24:11 +01:00
gap: 18px;
2021-08-08 11:15:18 +02:00
.mx_LegacyCallViewButtons_button {
2021-08-08 11:15:18 +02:00
cursor: pointer;
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-on-background;
border-radius: 100%;
height: 40px;
width: 40px;
display: flex;
justify-content: center;
align-items: center;
2021-08-08 11:15:18 +02:00
position: relative;
box-shadow: 0px 4px 4px 0px #00000026; /* Same on both themes */
2021-08-08 11:15:18 +02:00
&::before {
content: "";
display: inline-block;
2021-11-15 18:24:11 +01:00
mask-repeat: no-repeat;
mask-size: contain;
mask-position: center;
2021-08-08 11:15:18 +02:00
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-on-foreground;
height: 24px;
width: 24px;
2021-08-08 11:15:18 +02:00
}
&.mx_LegacyCallViewButtons_dropdownButton {
width: var(--LegacyCallViewButtons_dropdownButton-size);
height: var(--LegacyCallViewButtons_dropdownButton-size);
position: absolute;
right: 0;
bottom: 0;
&::before {
width: 14px;
height: 14px;
mask-image: url("$(res)/img/element-icons/message/chevron-up.svg");
}
&.mx_LegacyCallViewButtons_dropdownButton_collapsed::before {
transform: rotate(180deg);
}
}
/* State buttons */
&.mx_LegacyCallViewButtons_button_on {
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-on-background;
&::before {
background-color: $call-view-button-on-foreground;
}
&.mx_LegacyCallViewButtons_button_mic::before {
2023-01-02 14:36:58 +01:00
height: 20px;
mask-image: url("@vector-im/compound-design-tokens/icons/mic-on-solid.svg");
2023-01-02 14:36:58 +01:00
width: 20px;
2021-11-15 18:24:11 +01:00
}
&.mx_LegacyCallViewButtons_button_vid::before {
mask-image: url("@vector-im/compound-design-tokens/icons/video-call-solid.svg");
2021-11-15 18:24:11 +01:00
}
&.mx_LegacyCallViewButtons_button_screensharing {
2021-11-15 18:24:11 +01:00
background-color: $accent;
&::before {
mask-image: url("@vector-im/compound-design-tokens/icons/share-screen-solid.svg");
background-color: white; /* Same on both themes */
2021-11-15 18:24:11 +01:00
}
}
&.mx_LegacyCallViewButtons_button_sidebar::before {
2021-11-15 18:24:11 +01:00
mask-image: url("$(res)/img/voip/call-view/sidebar-on.svg");
}
}
&.mx_LegacyCallViewButtons_button_off {
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-off-background;
&::before {
background-color: $call-view-button-off-foreground;
}
&.mx_LegacyCallViewButtons_button_mic::before {
2023-01-02 14:36:58 +01:00
height: 20px;
mask-image: url("@vector-im/compound-design-tokens/icons/mic-off-solid.svg");
2023-01-02 14:36:58 +01:00
width: 20px;
2021-11-15 18:24:11 +01:00
}
&.mx_LegacyCallViewButtons_button_vid::before {
mask-image: url("@vector-im/compound-design-tokens/icons/video-call-off-solid.svg");
2021-11-15 18:24:11 +01:00
}
&.mx_LegacyCallViewButtons_button_screensharing {
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-on-background;
&::before {
mask-image: url("@vector-im/compound-design-tokens/icons/share-screen-solid.svg");
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-on-foreground;
}
}
&.mx_LegacyCallViewButtons_button_sidebar {
2021-11-15 18:24:11 +01:00
background-color: $call-view-button-on-background;
&::before {
mask-image: url("$(res)/img/voip/call-view/sidebar-off.svg");
background-color: $call-view-button-on-foreground;
}
}
}
/* State buttons */
2021-11-15 18:24:11 +01:00
/* Stateless buttons */
&.mx_LegacyCallViewButtons_dialpad::before {
2021-11-15 18:24:11 +01:00
mask-image: url("$(res)/img/voip/call-view/dialpad.svg");
2021-08-08 11:15:18 +02:00
}
&.mx_LegacyCallViewButtons_button_hangup {
2021-11-15 18:24:11 +01:00
background-color: $alert;
2021-08-08 11:15:18 +02:00
2021-11-15 18:24:11 +01:00
&::before {
mask-image: url("$(res)/img/element-icons/call/hangup.svg");
background-color: white; /* Same on both themes */
2021-11-15 18:24:11 +01:00
}
2021-08-08 11:15:18 +02:00
}
&.mx_LegacyCallViewButtons_button_more::before {
mask-image: url("@vector-im/compound-design-tokens/icons/overflow-horizontal.svg");
2021-08-08 11:15:18 +02:00
}
/* Stateless buttons */
2021-08-08 11:15:18 +02:00
/* Invisible state */
&.mx_LegacyCallViewButtons_button_invisible {
2021-08-08 11:15:18 +02:00
visibility: hidden;
pointer-events: none;
position: absolute;
}
/* Invisible state */
2021-08-08 11:15:18 +02:00
}
}