mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-15 02:24:04 +00:00
fix(core): hide double MW search suggestion
In rare scenario such as #520, default MW search suggestions will load regardless of the settings. This simple CSS hack is used to hide in case if it loaded. This will not be needed when vue search is implemented.
This commit is contained in:
parent
d53ab2911b
commit
7bec9ef10b
|
@ -115,3 +115,9 @@
|
|||
.citizen-card-show( false );
|
||||
}
|
||||
}
|
||||
|
||||
// HACK: Hide default MW search suggestion if it somehow loaded
|
||||
// This should be removed when we switch to vue search
|
||||
.suggestions {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue