2023-04-05 20:48:00 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.ContactListItem {
|
|
|
|
&__context-menu {
|
|
|
|
&__chat-icon {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/chat/chat-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-white
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/chat/chat-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-black
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__phone-icon {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/phone/phone-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-white
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/phone/phone-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-black
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__video-icon {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/video/video-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-white
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/video/video-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-black
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__delete-icon {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/minus/minus-circle-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-white
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/minus/minus-circle-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-black
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__block-icon {
|
|
|
|
@include dark-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/block/block-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-white
|
|
|
|
);
|
|
|
|
}
|
|
|
|
@include light-theme {
|
|
|
|
@include color-svg(
|
2023-05-04 18:04:22 +00:00
|
|
|
'../images/icons/v3/block/block-compact.svg',
|
2023-04-05 20:48:00 +00:00
|
|
|
$color-black
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Overrides
|
|
|
|
&__popper.ContextMenu__popper {
|
|
|
|
min-width: 240px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__button.ContextMenu__button {
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
.ContactListItem:hover & {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
@include light-theme {
|
|
|
|
background-color: $color-gray-20;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include dark-theme {
|
|
|
|
background-color: $color-gray-80;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
display: block;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
content: '';
|
|
|
|
|
|
|
|
@include dark-theme {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/more/more.svg', $color-white);
|
2023-04-05 20:48:00 +00:00
|
|
|
}
|
|
|
|
@include light-theme {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/more/more.svg', $color-black);
|
2023-04-05 20:48:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-25 19:22:35 +00:00
|
|
|
|
|
|
|
.ContactListItem__contact-icon {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
color: currentColor;
|
|
|
|
}
|