mediawiki-skins-MinervaNeue/skinStyles/mediawiki.searchSuggest/index.less
Jan Drewniak be0b43042e Convert Less variable names from camelCase to snake-case
Converts all Less variable names from CamelCase to snake-case
per the MediaWiki coding conventions.

Removes the following unused Less variables, mostly
related to icons, since those were converted to Codex:
- @icon-touch-area-sm
- @icon-touch-area-md
- @min-size-icon (replaced with @size-icon-medium)
- @icon-glyph-size-sm
- @icon-size-sm
- @icon-padding-sm
- @icon-glyph-size-md
- @icon-size-md
- @margin-icon-md-labelled

Bug: T350581
Change-Id: I1b16e77942d9bea20dcc5636a63d64aa2325a173
2024-01-31 15:24:31 -08:00

37 lines
574 B
Plaintext

@import '../../minerva.less/minerva.variables.less';
@media screen and ( max-width: @width-breakpoint-tablet ) {
.suggestions-results {
display: table;
width: 100%;
a {
height: 70px;
width: 100%;
display: table;
box-sizing: border-box;
}
.suggestions-result {
display: table-cell;
vertical-align: middle;
width: 100%;
}
}
.search-enabled {
.minerva-header {
position: relative;
.search-box {
display: block;
position: absolute;
left: 30px;
top: 10px;
right: 0;
z-index: @z-index-drawer;
}
}
}
}