1
0
mirror of https://github.com/searxng/searxng.git synced 2024-11-22 12:10:11 +01:00

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
commit e839910f4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
}
#q {
width: auto !important;
width: 100%;
flex: 1;
}
#main_results #q:placeholder-shown ~ #send_search {
@ -2536,6 +2536,14 @@ article.result-images .detail {
padding: 10px !important;
}
}
@media screen and (max-width: 20rem) {
#search {
grid-template-areas: "search search" "categories categories";
}
#search_logo {
display: none;
}
}
#categories {
margin: 0 10px 0 0;
-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;
}
#q {
width: auto !important;
width: 100%;
flex: 1;
}
#main_results #q:placeholder-shown ~ #send_search {
@ -2536,6 +2536,14 @@ article.result-images .detail {
padding: 10px !important;
}
}
@media screen and (max-width: 20rem) {
#search {
grid-template-areas: "search search" "categories categories";
}
#search_logo {
display: none;
}
}
#categories {
margin: 0 10px 0 0;
-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;
@phone: 50em;
@small-phone: 35em;
@ultra-small-phone: 20rem;
/// From style.less
@stacked-bar-chart: rgb(0, 0, 0);

View File

@ -191,7 +191,7 @@
}
#q {
width: auto !important;
width: 100%;
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 {
margin: 0 10px 0 0;
.disable-user-select;

View File

@ -7,7 +7,7 @@
<meta name="generator" content="searxng/{{ searx_version }}">
<meta name="referrer" content="no-referrer">
<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 http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<title>{% block title %}{% endblock %}{{ instance_name }}</title>