forked from zaclys/searxng
[fix] simple: detect touch screen using media query
related to https://github.com/searxng/searxng/issues/928
This commit is contained in:
parent
afde954df8
commit
e435806505
|
@ -4,7 +4,6 @@
|
||||||
* (C) Copyright Contributors to the searx project (2014 - 2021).
|
* (C) Copyright Contributors to the searx project (2014 - 2021).
|
||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
/* global DocumentTouch:readonly */
|
|
||||||
(function (w, d) {
|
(function (w, d) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
@ -16,7 +15,6 @@
|
||||||
|
|
||||||
// try to detect touch screen
|
// try to detect touch screen
|
||||||
w.searxng = {
|
w.searxng = {
|
||||||
touch: (("ontouchstart" in w) || w.DocumentTouch && document instanceof DocumentTouch) || false,
|
|
||||||
method: script.getAttribute('data-method'),
|
method: script.getAttribute('data-method'),
|
||||||
autocompleter: script.getAttribute('data-autocompleter') === 'true',
|
autocompleter: script.getAttribute('data-autocompleter') === 'true',
|
||||||
search_on_category_select: script.getAttribute('data-search-on-category-select') === 'true',
|
search_on_category_select: script.getAttribute('data-search-on-category-select') === 'true',
|
||||||
|
@ -34,7 +32,4 @@
|
||||||
var hmtlElement = d.getElementsByTagName("html")[0];
|
var hmtlElement = d.getElementsByTagName("html")[0];
|
||||||
hmtlElement.classList.remove('no-js');
|
hmtlElement.classList.remove('no-js');
|
||||||
hmtlElement.classList.add('js');
|
hmtlElement.classList.add('js');
|
||||||
if (w.searxng.touch) {
|
|
||||||
hmtlElement.classList.add('touch');
|
|
||||||
}
|
|
||||||
})(window, document);
|
})(window, document);
|
|
@ -200,8 +200,9 @@
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
html.touch {
|
@media screen and (max-width: @tablet) and (hover: none) {
|
||||||
#main_index,
|
#main_index,
|
||||||
#main_results {
|
#main_results {
|
||||||
#categories_container {
|
#categories_container {
|
||||||
|
@ -222,7 +223,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: @phone) {
|
@media screen and (max-width: @phone) {
|
||||||
#search_header {
|
#search_header {
|
||||||
|
@ -262,8 +262,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.category {
|
.category {
|
||||||
display: block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: auto;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
|
|
Loading…
Reference in New Issue