2018-04-12 00:23:35 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2018-04-12 00:23:35 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 00:23:35 +01:00
|
|
|
*/
|
|
|
|
|
|
2019-09-10 10:53:55 +02:00
|
|
|
.mx_SearchBox {
|
|
|
|
|
flex: 1 1 0;
|
|
|
|
|
min-width: 0;
|
2025-11-06 16:32:46 +00:00
|
|
|
min-height: 36px; /* to avoid jumping when the X to clear shows/hides */
|
2019-09-10 10:53:55 +02:00
|
|
|
|
2019-09-10 10:58:44 +02:00
|
|
|
&.mx_SearchBox_blurred:not(:hover) {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-10 10:53:55 +02:00
|
|
|
.mx_SearchBox_closeButton {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: 16px;
|
2025-12-15 09:52:50 +00:00
|
|
|
width: 16px;
|
2019-09-10 10:53:55 +02:00
|
|
|
padding: 9px;
|
2025-12-15 09:52:50 +00:00
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
height: inherit;
|
|
|
|
|
width: inherit;
|
|
|
|
|
color: var(--cpd-color-icon-secondary);
|
|
|
|
|
}
|
2019-09-10 10:53:55 +02:00
|
|
|
}
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|