signal-desktop/stylesheets/components/ContactPill.scss

87 lines
1.7 KiB
SCSS
Raw Normal View History

2021-03-03 20:09:58 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.module-ContactPill {
align-items: center;
display: inline-flex;
user-select: none;
overflow: hidden;
2023-05-04 18:04:22 +00:00
padding-block: 4px;
padding-inline: 8px;
border-radius: 6px;
2021-03-03 20:09:58 +00:00
@include light-theme {
2023-05-04 23:46:34 +00:00
background: $color-black-alpha-08;
2021-03-03 20:09:58 +00:00
color: $color-gray-90;
}
@include dark-theme {
2023-05-04 23:46:34 +00:00
background: $color-white-alpha-12;
color: $color-gray-05;
}
@include keyboard-mode {
&:focus-within {
@include light-theme {
background: $color-gray-45;
color: $color-white;
}
@include dark-theme {
background: $color-gray-25;
color: $color-gray-90;
}
}
2021-03-03 20:09:58 +00:00
}
&__contact-name {
@include font-body-2;
2023-04-20 17:03:43 +00:00
padding-block: 0;
padding-inline: 6px;
2021-03-03 20:09:58 +00:00
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
&__remove {
2023-05-04 18:04:22 +00:00
$icon: '../images/icons/v3/x/x-compact-light.svg';
2021-03-03 20:09:58 +00:00
@include button-reset;
height: 100%;
display: flex;
2023-05-04 18:04:22 +00:00
width: 16px;
height: 16px;
2021-03-03 20:09:58 +00:00
justify-content: center;
align-items: center;
2023-05-04 18:04:22 +00:00
padding: 0;
2021-03-03 20:09:58 +00:00
&::before {
content: '';
2023-05-04 18:04:22 +00:00
width: 100%;
height: 100%;
2021-03-03 20:09:58 +00:00
display: block;
@include light-theme {
@include color-svg($icon, $color-gray-60);
}
@include dark-theme {
@include color-svg($icon, $color-gray-25);
}
}
@include keyboard-mode {
&:focus {
&::before {
2023-05-04 23:46:34 +00:00
@include color-svg($icon, $color-white);
2021-03-03 20:09:58 +00:00
}
}
}
@include dark-keyboard-mode {
&:focus {
&::before {
2023-05-04 23:46:34 +00:00
@include color-svg($icon, $color-gray-90);
2021-03-03 20:09:58 +00:00
}
}
}
}
}