signal-desktop/stylesheets/components/LeftPaneSearchInput.scss

63 lines
1.3 KiB
SCSS
Raw Normal View History

2023-01-03 11:55:46 -08:00
// Copyright 2021 Signal Messenger, LLC
2021-11-01 13:43:02 -05:00
// SPDX-License-Identifier: AGPL-3.0-only
.LeftPaneSearchInput {
2022-02-14 12:57:11 -05:00
&__input--with-children.module-SearchInput__input--with-children {
padding-left: 50px;
2021-11-01 13:43:02 -05:00
}
&__in-conversation-pill {
@include button-reset;
@include rounded-corners;
align-items: center;
bottom: 3px;
display: flex;
flex-direction: row;
left: 3px;
2022-12-09 13:37:45 -07:00
padding: 0 3px 0 0;
2021-11-01 13:43:02 -05:00
position: absolute;
2022-12-09 13:37:45 -07:00
top: 5px;
2021-11-01 13:43:02 -05:00
@include light-theme {
2022-01-27 17:12:26 -05:00
background-color: $color-gray-25;
2021-11-01 13:43:02 -05:00
}
@include dark-theme {
2022-01-27 17:12:26 -05:00
background-color: $color-gray-80;
2021-11-01 13:43:02 -05:00
}
&__x-button {
height: 16px;
margin-left: 2px;
width: 16px;
@include light-theme {
@include color-svg('../images/icons/v2/x-24.svg', $color-gray-60);
}
@include dark-theme {
@include color-svg('../images/icons/v2/x-24.svg', $color-gray-25);
}
@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 12:57:11 -05:00
&__container {
display: none;
}
2021-11-01 13:43:02 -05:00
}
}