2021-05-20 21:54:03 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.module-CallingScreenSharingController {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2023-04-20 17:03:43 +00:00
|
|
|
padding-block: 4px;
|
|
|
|
padding-inline: 16px;
|
2021-05-20 21:54:03 +00:00
|
|
|
-webkit-app-region: drag;
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
@include font-body-2;
|
|
|
|
color: $color-gray-05;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
user-select: none;
|
|
|
|
white-space: nowrap;
|
2021-06-17 18:41:16 +00:00
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
white-space: nowrap;
|
2021-05-20 21:54:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
2023-04-20 17:03:43 +00:00
|
|
|
margin-inline-start: 6px;
|
2021-05-20 21:54:03 +00:00
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__close {
|
|
|
|
@include button-reset;
|
|
|
|
@include color-svg('../images/icons/v2/x-24.svg', $color-gray-25);
|
|
|
|
cursor: pointer;
|
2023-04-20 17:03:43 +00:00
|
|
|
margin-inline-start: 12px;
|
2021-05-20 21:54:03 +00:00
|
|
|
height: 20px;
|
|
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
}
|