2020-06-09 04:33:21 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Note: this component expects to be contained within a flexbox */
|
2020-06-09 04:33:21 +02:00
|
|
|
.mx_RoomSearch {
|
|
|
|
flex: 1;
|
2022-07-08 10:50:06 +02:00
|
|
|
min-width: 0;
|
2020-08-14 19:53:56 +02:00
|
|
|
border-radius: 8px;
|
2021-11-29 13:52:09 +01:00
|
|
|
background-color: $panel-actions;
|
2022-07-27 15:39:29 +02:00
|
|
|
/* keep border thickness consistent to prevent movement */
|
2020-08-17 17:59:29 +02:00
|
|
|
border: 1px solid transparent;
|
2020-07-13 18:19:10 +02:00
|
|
|
height: 28px;
|
2021-03-26 14:10:44 +01:00
|
|
|
padding: 1px;
|
2020-06-09 04:33:21 +02:00
|
|
|
|
2022-07-27 15:39:29 +02:00
|
|
|
/* Create a flexbox for the icons (easier to manage) */
|
2020-06-09 04:33:21 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
2022-07-08 10:50:06 +02:00
|
|
|
cursor: pointer;
|
|
|
|
|
2020-06-09 04:33:21 +02:00
|
|
|
.mx_RoomSearch_icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2022-12-12 12:24:14 +01:00
|
|
|
mask: url("$(res)/img/element-icons/roomlist/search.svg");
|
2020-06-09 04:33:21 +02:00
|
|
|
mask-repeat: no-repeat;
|
2021-08-12 11:30:35 +02:00
|
|
|
background-color: $secondary-content;
|
2020-06-09 04:33:21 +02:00
|
|
|
margin-left: 7px;
|
2022-02-08 15:02:36 +01:00
|
|
|
margin-bottom: 2px;
|
2022-07-08 10:50:06 +02:00
|
|
|
flex-shrink: 0;
|
2020-06-09 04:33:21 +02:00
|
|
|
}
|
|
|
|
|
2022-02-08 15:02:36 +01:00
|
|
|
.mx_RoomSearch_spotlightTriggerText {
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-16px;
|
2022-07-08 10:50:06 +02:00
|
|
|
color: $tertiary-content;
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2022-07-27 15:39:29 +02:00
|
|
|
/* the following rules are to match that of a real input field */
|
2022-07-08 10:50:06 +02:00
|
|
|
overflow: hidden;
|
|
|
|
margin: 9px;
|
2023-04-21 16:16:00 +02:00
|
|
|
font-weight: var(--font-semi-bold);
|
2022-07-08 10:50:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomSearch_shortcutPrompt {
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: $panel-actions;
|
|
|
|
padding: 2px 4px;
|
|
|
|
user-select: none;
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
|
|
|
font-family: inherit;
|
2023-04-21 16:16:00 +02:00
|
|
|
font-weight: var(--font-semi-bold);
|
2022-07-08 10:50:06 +02:00
|
|
|
color: $light-fg-color;
|
|
|
|
margin-right: 6px;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2022-02-08 15:02:36 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 22:39:28 +02:00
|
|
|
&.mx_RoomSearch_minimized {
|
2022-02-17 11:33:36 +01:00
|
|
|
height: 32px;
|
|
|
|
min-height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
box-sizing: border-box;
|
2020-06-11 22:39:28 +02:00
|
|
|
|
|
|
|
.mx_RoomSearch_icon {
|
2022-02-17 11:33:36 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 1px;
|
|
|
|
align-self: center;
|
2020-06-11 22:39:28 +02:00
|
|
|
}
|
2021-11-30 19:08:46 +01:00
|
|
|
|
2022-07-08 10:50:06 +02:00
|
|
|
.mx_RoomSearch_shortcutPrompt {
|
|
|
|
display: none;
|
2021-11-30 19:08:46 +01:00
|
|
|
}
|
2020-06-11 22:39:28 +02:00
|
|
|
}
|
2022-02-08 15:02:36 +01:00
|
|
|
|
2022-07-08 10:50:06 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: $tertiary-content;
|
2022-02-08 15:02:36 +01:00
|
|
|
|
|
|
|
.mx_RoomSearch_spotlightTriggerText {
|
2022-07-08 10:50:06 +02:00
|
|
|
color: $background;
|
2022-02-08 15:02:36 +01:00
|
|
|
}
|
|
|
|
|
2022-07-08 10:50:06 +02:00
|
|
|
.mx_RoomSearch_shortcutPrompt {
|
|
|
|
background-color: $background;
|
|
|
|
color: $secondary-content;
|
|
|
|
}
|
2022-02-08 15:02:36 +01:00
|
|
|
|
2022-07-08 10:50:06 +02:00
|
|
|
.mx_RoomSearch_icon {
|
|
|
|
background-color: $background;
|
2022-02-08 15:02:36 +01:00
|
|
|
}
|
|
|
|
}
|
2020-06-09 04:33:21 +02:00
|
|
|
}
|