2019-08-08 20:01:03 +00:00
|
|
|
@import '../../../minerva.less/minerva.variables.less';
|
2017-07-12 15:12:40 +00:00
|
|
|
|
|
|
|
// These styles transform the SearchOverlay appearance in the Minerva skin.
|
|
|
|
// Since SearchOverlay can be used by other skins, these styles are kept separate from
|
|
|
|
// the others.
|
|
|
|
|
2018-12-06 22:46:46 +00:00
|
|
|
.overlay.search-overlay {
|
2017-07-12 15:12:40 +00:00
|
|
|
.spinner-container {
|
2024-01-31 15:06:56 +00:00
|
|
|
top: @height-site-header;
|
2019-02-06 13:48:03 +00:00
|
|
|
}
|
|
|
|
|
2024-02-14 02:55:25 +00:00
|
|
|
.with-results,
|
|
|
|
.without-results {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2017-07-12 15:12:40 +00:00
|
|
|
.clear {
|
2020-02-20 16:10:55 +00:00
|
|
|
background: none;
|
2017-07-12 15:12:40 +00:00
|
|
|
position: absolute;
|
2019-09-30 20:33:20 +00:00
|
|
|
top: 50%;
|
2017-07-12 15:12:40 +00:00
|
|
|
right: 0;
|
2019-09-30 20:33:20 +00:00
|
|
|
transform: translateY( -50% );
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-box {
|
|
|
|
position: relative;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-07 09:03:29 +00:00
|
|
|
// Calculate padding based off icon and branding box widths,
|
|
|
|
// accounting for `box-sizing: border-box` on the icon
|
|
|
|
@spacing-search-horizontal-ems: unit( @spacing-horizontal-button / @font-size-browser, ems );
|
|
|
|
|
|
|
|
@media all and ( min-width: @min-width-breakpoint-tablet ) {
|
2018-12-06 22:46:46 +00:00
|
|
|
.overlay.search-overlay {
|
2023-11-07 09:03:29 +00:00
|
|
|
@searchPadding: @min-size-interactive-touch-ems + @min-width-branding-box-ems - @spacing-search-horizontal-ems;
|
2018-12-12 23:20:10 +00:00
|
|
|
|
2021-10-28 21:48:05 +00:00
|
|
|
.search-box,
|
2017-07-12 15:12:40 +00:00
|
|
|
.search-content,
|
2021-10-28 21:48:05 +00:00
|
|
|
.spinner-container,
|
2017-07-12 15:12:40 +00:00
|
|
|
.results {
|
2024-01-31 15:06:56 +00:00
|
|
|
width: @width-search-box;
|
2021-10-28 21:48:05 +00:00
|
|
|
margin-left: @searchPadding;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure search overlay content is aligned with .heading-container
|
|
|
|
.overlay-header-container,
|
|
|
|
.overlay-content {
|
2024-01-31 15:06:56 +00:00
|
|
|
padding-left: @padding-content;
|
|
|
|
padding-right: @padding-content;
|
2021-10-28 21:48:05 +00:00
|
|
|
box-sizing: border-box;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.overlay-title {
|
2021-10-28 21:48:05 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay-content {
|
|
|
|
// Override default width styles
|
2023-11-07 09:03:29 +00:00
|
|
|
width: 90%;
|
2021-10-28 21:48:05 +00:00
|
|
|
max-width: none;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.spinner-container {
|
|
|
|
left: auto;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-07 09:03:29 +00:00
|
|
|
/* Keeps search input aligned */
|
|
|
|
@media all and ( min-width: @min-width-breakpoint-tablet ) and ( max-width: @min-width-breakpoint-desktop ) {
|
|
|
|
.overlay-title {
|
|
|
|
padding-left: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: Remove when T366859 has been addressed */
|
|
|
|
@media screen and ( min-width: 720px ) {
|
|
|
|
.overlay.search-overlay {
|
|
|
|
@T366859-searchPadding: @min-size-interactive-touch-ems + @T366859-min-width-branding-box-ems - @spacing-search-horizontal-ems;
|
|
|
|
|
|
|
|
.search-box,
|
|
|
|
.search-content,
|
|
|
|
.spinner-container,
|
|
|
|
.results {
|
|
|
|
margin-left: @T366859-searchPadding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and ( min-width: @min-width-breakpoint-desktop ) {
|
2018-12-06 22:46:46 +00:00
|
|
|
.overlay.search-overlay {
|
2021-10-28 21:48:05 +00:00
|
|
|
// Normally .overlay-content would have these styles by default
|
|
|
|
// But since we need to account for .heading-container padding in .overlay-content,
|
|
|
|
// we apply these styles directly to the search results instead.
|
|
|
|
.search-results-view {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 90%;
|
2024-01-31 15:06:56 +00:00
|
|
|
max-width: @max-width-content-tablet;
|
2017-07-12 15:12:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|