2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
2021-11-01 18:43:02 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
.LeftPaneSearchInput {
|
2022-02-14 17:57:11 +00:00
|
|
|
&__input--with-children.module-SearchInput__input--with-children {
|
2023-04-20 17:03:43 +00:00
|
|
|
padding-inline-start: 50px;
|
2021-11-01 18:43:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__in-conversation-pill {
|
|
|
|
@include button-reset;
|
|
|
|
@include rounded-corners;
|
|
|
|
align-items: center;
|
2023-03-03 17:35:18 +00:00
|
|
|
bottom: 4px;
|
2021-11-01 18:43:02 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-04-20 17:03:43 +00:00
|
|
|
inset-inline-start: 3px;
|
|
|
|
padding-block: 0;
|
|
|
|
padding-inline: 0 3px;
|
2021-11-01 18:43:02 +00:00
|
|
|
position: absolute;
|
2023-03-03 17:35:18 +00:00
|
|
|
top: 4px;
|
2021-11-01 18:43:02 +00:00
|
|
|
|
|
|
|
@include light-theme {
|
2022-01-27 22:12:26 +00:00
|
|
|
background-color: $color-gray-25;
|
2021-11-01 18:43:02 +00:00
|
|
|
}
|
|
|
|
@include dark-theme {
|
2022-01-27 22:12:26 +00:00
|
|
|
background-color: $color-gray-80;
|
2021-11-01 18:43:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__x-button {
|
|
|
|
height: 16px;
|
2023-04-20 17:03:43 +00:00
|
|
|
margin-inline-start: 2px;
|
2021-11-01 18:43:02 +00:00
|
|
|
width: 16px;
|
|
|
|
|
|
|
|
@include light-theme {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-60);
|
2021-11-01 18:43:02 +00:00
|
|
|
}
|
|
|
|
@include dark-theme {
|
2023-05-04 18:04:22 +00:00
|
|
|
@include color-svg('../images/icons/v3/x/x.svg', $color-gray-25);
|
2021-11-01 18:43:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@include light-theme {
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: $color-ultramarine;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@include dark-theme {
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
background: $color-ultramarine-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.module-left-pane--width-narrow & {
|
2022-02-14 17:57:11 +00:00
|
|
|
&__container {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-11-01 18:43:02 +00:00
|
|
|
}
|
|
|
|
}
|