2018-04-12 02:23:35 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 02:23:35 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
2024-09-09 16:57:16 +03:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 02:23:35 +03:00
|
|
|
*/
|
|
|
|
|
2019-09-10 11:53:55 +03:00
|
|
|
.mx_SearchBox {
|
|
|
|
flex: 1 1 0;
|
|
|
|
min-width: 0;
|
|
|
|
|
2019-09-10 11:58:44 +03:00
|
|
|
&.mx_SearchBox_blurred:not(:hover) {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2019-09-10 11:53:55 +03:00
|
|
|
.mx_SearchBox_closeButton {
|
|
|
|
cursor: pointer;
|
2024-10-02 13:06:17 +03:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/close.svg");
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 16px;
|
2019-09-10 11:53:55 +03:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
padding: 9px;
|
2024-10-02 13:06:17 +03:00
|
|
|
background-color: var(--cpd-color-icon-secondary);
|
2019-09-10 11:53:55 +03:00
|
|
|
}
|
2018-04-12 02:23:35 +03:00
|
|
|
}
|