Merge pull request #491 from MrPaulBlack/fix-mobile-result-scaling

[fix] mobile result scaling in simple theme
This commit is contained in:
Paul Braeuning
2021-11-12 10:21:59 +01:00
committed by GitHub
11 changed files with 39 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@@ -2513,7 +2513,7 @@ article.result-images .detail {
flex-direction: row; flex-direction: row;
} }
#q { #q {
width: auto !important; width: 100%;
flex: 1; flex: 1;
} }
#main_results #q:placeholder-shown ~ #send_search { #main_results #q:placeholder-shown ~ #send_search {
@@ -2536,6 +2536,14 @@ article.result-images .detail {
padding: 10px !important; padding: 10px !important;
} }
} }
@media screen and (max-width: 20rem) {
#search {
grid-template-areas: "search search" "categories categories";
}
#search_logo {
display: none;
}
}
#categories { #categories {
margin: 0 10px 0 0; margin: 0 10px 0 0;
-webkit-touch-callout: none; -webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -2513,7 +2513,7 @@ article.result-images .detail {
flex-direction: row; flex-direction: row;
} }
#q { #q {
width: auto !important; width: 100%;
flex: 1; flex: 1;
} }
#main_results #q:placeholder-shown ~ #send_search { #main_results #q:placeholder-shown ~ #send_search {
@@ -2536,6 +2536,14 @@ article.result-images .detail {
padding: 10px !important; padding: 10px !important;
} }
} }
@media screen and (max-width: 20rem) {
#search {
grid-template-areas: "search search" "categories categories";
}
#search_logo {
display: none;
}
}
#categories { #categories {
margin: 0 10px 0 0; margin: 0 10px 0 0;
-webkit-touch-callout: none; -webkit-touch-callout: none;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -220,6 +220,7 @@
@tablet: 80em; @tablet: 80em;
@phone: 50em; @phone: 50em;
@small-phone: 35em; @small-phone: 35em;
@ultra-small-phone: 20rem;
/// From style.less /// From style.less
@stacked-bar-chart: rgb(0, 0, 0); @stacked-bar-chart: rgb(0, 0, 0);

View File

@@ -191,7 +191,7 @@
} }
#q { #q {
width: auto !important; width: 100%;
flex: 1; flex: 1;
} }
@@ -220,6 +220,18 @@
} }
} }
@media screen and (max-width: @ultra-small-phone) {
#search {
grid-template-areas:
"search search"
"categories categories";
}
#search_logo {
display: none;
}
}
#categories { #categories {
margin: 0 10px 0 0; margin: 0 10px 0 0;
.disable-user-select; .disable-user-select;

View File

@@ -7,7 +7,7 @@
<meta name="generator" content="searxng/{{ searx_version }}"> <meta name="generator" content="searxng/{{ searx_version }}">
<meta name="referrer" content="no-referrer"> <meta name="referrer" content="no-referrer">
<meta name="robots" content="noarchive"> <meta name="robots" content="noarchive">
<meta name="viewport" content="width=device-width, maximum-scale=1.0, user-scalable=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="True"> <meta name="HandheldFriendly" content="True">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<title>{% block title %}{% endblock %}{{ instance_name }}</title> <title>{% block title %}{% endblock %}{{ instance_name }}</title>