2020-11-19 17:12:53 +00:00
|
|
|
@import 'SearchBox.less';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Minimal styling for initial no-JS server-rendered
|
|
|
|
* search form, which gets replaced by WVUI on focus.
|
|
|
|
* Most values are hard-coded since they aim to
|
2020-12-09 13:02:10 +00:00
|
|
|
* mimic WVUI-specific variables and disable the
|
|
|
|
* ResourceLoader LESS transformation of `calc`.
|
2020-11-19 17:12:53 +00:00
|
|
|
*/
|
|
|
|
|
2020-12-14 19:29:38 +00:00
|
|
|
// Derived from @size-base in WVUI
|
|
|
|
// https://gerrit.wikimedia.org/r/plugins/gitiles/wvui/+/e32b54f3b8d1118b6a25cdc46b5638d6d048533e/src/themes/wikimedia-ui.less#7
|
|
|
|
@size-base: unit( 32px / @font-size-browser / @font-size-base, em );
|
|
|
|
|
|
|
|
@min-size-search-button: 30px;
|
|
|
|
@background-size-x-search-button: unit( 20px / @font-size-browser / @font-size-base, em );
|
|
|
|
|
|
|
|
// Search container
|
|
|
|
// We have to put those styles outside `.skin-vector-search-vue`,
|
|
|
|
// as we can't address no-JS modern and Vue enhanced otherwise.
|
|
|
|
#p-search {
|
|
|
|
// Use Vector's base font-size, as this is a component outside of `.mw-body-content`.
|
|
|
|
font-size: @font-size-base;
|
|
|
|
// Support IE 9-11, Trident cuts values 2 digits after decimal point.
|
|
|
|
// `calc` enables to set correct calculation in place again. See T102364.
|
|
|
|
font-size: @font-size-base--trident-hack;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Typeahead search elements
|
|
|
|
#searchInput,
|
|
|
|
#searchButton {
|
|
|
|
// Overrides #mw-searchButton in resources/skins.vector.styles/SearchBox.less
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchInput {
|
|
|
|
height: @size-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchButton {
|
|
|
|
background-size: @background-size-x-search-button auto;
|
|
|
|
min-height: @min-size-search-button;
|
|
|
|
}
|
|
|
|
|
2020-12-09 13:02:10 +00:00
|
|
|
// TODO: Parent class can be removed when $wgVectorUseCoreSearch is no longer supported.
|
2020-11-19 17:12:53 +00:00
|
|
|
.skin-vector-search-vue {
|
2020-12-09 13:02:10 +00:00
|
|
|
// Derived from @size-search-figure in WVUI
|
|
|
|
// https://gerrit.wikimedia.org/r/plugins/gitiles/wvui/+/e32b54f3b8d1118b6a25cdc46b5638d6d048533e/src/themes/wikimedia-ui.less#21
|
2020-12-14 19:29:38 +00:00
|
|
|
@size-search-figure: unit( 36px / @font-size-browser / @font-size-base, em );
|
2020-12-09 13:02:10 +00:00
|
|
|
|
2020-11-19 17:12:53 +00:00
|
|
|
#searchInput {
|
2020-12-09 13:02:10 +00:00
|
|
|
padding-left: @size-search-figure;
|
2020-12-14 19:29:38 +00:00
|
|
|
|
2020-11-19 17:12:53 +00:00
|
|
|
// Recreate WVUI expanding input.
|
|
|
|
&:focus {
|
|
|
|
position: relative;
|
2020-12-14 19:29:38 +00:00
|
|
|
// Use ~ and fixed values to disable the LESS transformation in ResourceLoader LESS implementation.
|
|
|
|
padding-left: ~'calc( 12px + 2.57142857em + 12px )';
|
2020-11-19 17:12:53 +00:00
|
|
|
width: ~'calc( 100% + 24px )';
|
|
|
|
left: ~'calc( -1 * 24px )';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move & resize search icon to match WVUI.
|
|
|
|
#searchButton {
|
2020-12-09 13:02:10 +00:00
|
|
|
// Override the default right & left position of the icon.
|
2020-11-19 17:12:53 +00:00
|
|
|
right: auto;
|
|
|
|
left: 0;
|
2020-12-09 13:02:10 +00:00
|
|
|
// Increase size to match WVUI.
|
|
|
|
width: @size-search-figure;
|
2020-11-19 17:12:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reposition search icon for expanded input.
|
|
|
|
#searchInput:focus ~ #searchButton {
|
2020-12-09 13:02:10 +00:00
|
|
|
// Derived from
|
|
|
|
// https://gerrit.wikimedia.org/r/plugins/gitiles/wvui/+/e32b54f3b8d1118b6a25cdc46b5638d6d048533e/src/components/typeahead-search/TypeaheadSearch.vue#610
|
|
|
|
left: -12px;
|
|
|
|
}
|
|
|
|
|
2020-12-14 19:29:38 +00:00
|
|
|
// Reset WVUI. Prevents the input border from animating
|
2020-12-09 13:02:10 +00:00
|
|
|
// when it gets inserted into the DOM while being focused.
|
|
|
|
.wvui-input__input:not( [ disabled ] ) {
|
2020-12-14 19:29:38 +00:00
|
|
|
.transition( none );
|
2020-11-19 17:12:53 +00:00
|
|
|
}
|
|
|
|
}
|