signal-desktop/stylesheets/components/CallingScreenSharingController.scss

41 lines
807 B
SCSS
Raw Normal View History

// 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;
-webkit-app-region: drag;
&__text {
@include font-body-2;
overflow: hidden;
text-overflow: ellipsis;
user-select: none;
white-space: nowrap;
width: 350px;
}
&__button {
white-space: nowrap;
}
&__buttons {
align-items: center;
display: flex;
2023-04-20 17:03:43 +00:00
margin-inline-start: 6px;
-webkit-app-region: no-drag;
}
&__close {
@include button-reset;
2023-05-04 18:04:22 +00:00
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-25);
cursor: pointer;
2023-04-20 17:03:43 +00:00
margin-inline-start: 12px;
height: 20px;
width: 20px;
}
}