mirror of
https://github.com/searxng/searxng.git
synced 2025-02-18 11:20:03 +00:00
Merge pull request #491 from MrPaulBlack/fix-mobile-result-scaling
[fix] mobile result scaling in simple theme
This commit is contained in:
commit
e839910f4c
Binary file not shown.
@ -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;
|
||||||
|
BIN
searx/static/themes/simple/css/searxng-rtl.min.css
vendored
BIN
searx/static/themes/simple/css/searxng-rtl.min.css
vendored
Binary file not shown.
Binary file not shown.
@ -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;
|
||||||
|
BIN
searx/static/themes/simple/css/searxng.min.css
vendored
BIN
searx/static/themes/simple/css/searxng.min.css
vendored
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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);
|
||||||
|
@ -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;
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user