Преглед изворни кода

[mod] default template modifications

- more smartphone friendly
- more text browser friendly
- next button always on the right
- in case of small screen supporting touch event, categories are displayed on one line with a scroll
dalf пре 10 година
родитељ
комит
a71b326d9e

+ 1
- 1
searx/static/default/css/style.css
Разлика између датотеке није приказан због своје велике величине
Прегледај датотеку


+ 4
- 0
searx/static/default/js/searx.js Прегледај датотеку

@@ -41,5 +41,9 @@ if(searx.autocompleter) {
41 41
         }
42 42
     });
43 43
 
44
+    if (!!('ontouchstart' in window)) {
45
+        document.getElementsByTagName("html")[0].className += " touch";
46
+    }
47
+
44 48
 })(window, document);
45 49
 

+ 83
- 19
searx/static/default/less/style.less Прегледај датотеку

@@ -97,6 +97,7 @@ h1 {
97 97
 div.title {
98 98
 	background: url('../img/searx.png') no-repeat;
99 99
 	width: 100%;
100
+        min-height: 80px;
100 101
 	background-position: center;
101 102
 
102 103
 	h1 {
@@ -261,8 +262,12 @@ a {
261 262
 	.published_date {
262 263
 		font-size: 0.8em;
263 264
 		color: @color-result-publishdate-font;
264
-    	margin: 5px 20px;
265
+                Margin: 5px 20px;
265 266
 	}
267
+
268
+        .thumbnail {
269
+                width: 400px; 
270
+        }
266 271
 }
267 272
 
268 273
 .engines {
@@ -396,6 +401,14 @@ tr {
396 401
 	}
397 402
 }
398 403
 
404
+#suggestions {
405
+
406
+        span {
407
+                display: block;
408
+        }
409
+
410
+}
411
+
399 412
 #suggestions, #answers {
400 413
 
401 414
     	margin-top: 20px;
@@ -419,7 +432,8 @@ tr {
419 432
     	}
420 433
 
421 434
 	form {
422
-		display: inline;
435
+		display: inline-block;
436
+                min-width: 210px;
423 437
 	}
424 438
 }
425 439
 
@@ -437,6 +451,7 @@ tr {
437 451
 	   	    border: 1px solid #ddd;
438 452
 		    padding: 5px;
439 453
 	   	    font-size: 0.8em;
454
+                    /* box-shadow: 0px 0px 5px #CCC; */
440 455
 
441 456
 	   	    img {
442 457
 		    	max-width: 20em;
@@ -502,6 +517,10 @@ tr {
502 517
 
503 518
 #pagination {
504 519
 	clear: both;
520
+
521
+        br {
522
+        	clear: both;
523
+        }
505 524
 }
506 525
 
507 526
 #apis {
@@ -531,7 +550,7 @@ tr {
531 550
 		}
532 551
 	}
533 552
 
534
-	.right {
553
+	.preferences_container {
535 554
 		display: none;
536 555
 		postion: fixed !important;
537 556
 		top: 100px;
@@ -542,20 +561,61 @@ tr {
542 561
 
543 562
 @media screen and (max-width: 75em) {
544 563
 
545
-       #infoboxes {
546
-	   position: inherit;
547
-	   max-width: inherit;
564
+        div.title {
565
+
566
+        	h1 {
567
+                        font-size: 1em;
568
+        	}
569
+        }
570
+
571
+        html.touch #categories {
572
+                width: 95%;
573
+                height: 30px;
574
+                text-align: left;
575
+                overflow-x: scroll;
576
+                overflow-y: hidden;
577
+                -webkit-overflow-scrolling: touch;
578
+                
579
+                #categories_container {
580
+                        width: 1000px;
581
+                        width: -moz-max-content;
582
+                        width: -webkit-max-content;
583
+                        width: max-content;
584
+
585
+                        .checkbox_container {
586
+                                display: inline-block;
587
+                                width: auto;
588
+                        }
589
+                }
590
+        }
591
+
592
+	#categories {
593
+                font-size: 90%;
594
+                clear: both;
595
+
596
+                .checkbox_container {
597
+                        margin-top: 2px;
598
+                        margin: auto;
599
+                }
600
+        }
601
+
602
+        #suggestions, #answers {
603
+                margin-top: 5px;
604
+        }
605
+
606
+        #infoboxes {
607
+                position: inherit;
608
+                max-width: inherit;
548 609
 	   
549
-	   .infobox {
550
-	   	    clear:both;
610
+                .infobox {
611
+                        clear:both;
551 612
 	   
552
-	   	   img {
553
-	   	       float: left;
554
-	       	       max-width: 10em;
555
-	   	   }
556
-	   }
557
-
558
-       }
613
+                        img {
614
+                                float: left;
615
+                                max-width: 10em;
616
+                        }
617
+                }
618
+        }
559 619
 
560 620
 	#categories {
561 621
 		font-size: 90%;
@@ -584,13 +644,17 @@ tr {
584 644
 		display: none;
585 645
 	}
586 646
 
587
-    #search_url {
588
-        display: none;
589
-    }
647
+    	#search_url {
648
+        	display: none;
649
+    	}
590 650
 
591 651
 	.result {
592 652
 		border-top: 1px solid @color-result-top-border;
593
-		margin: 7px 0 6px 0;
653
+		margin: 8px 0 8px 0;
654
+
655
+                .thumbnail {
656
+                        max-width: 98%;
657
+                }
594 658
 	}
595 659
 
596 660
 	.image_result {

+ 4
- 4
searx/templates/default/base.html Прегледај датотеку

@@ -13,10 +13,6 @@
13 13
     {% block head %}
14 14
     <link title="searx" type="application/opensearchdescription+xml" rel="search" href="{{ url_for('opensearch') }}"/>
15 15
     {% endblock %}
16
-    <script type="text/javascript">
17
-        searx = {};
18
-        searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %};
19
-    </script>
20 16
 </head>
21 17
 <body>
22 18
 <div id="container">
@@ -26,6 +22,10 @@
26 22
 <script src="{{ url_for('static', filename='js/mootools-core-1.4.5-min.js') }}" ></script>
27 23
 <script src="{{ url_for('static', filename='js/mootools-autocompleter-1.1.2-min.js') }}" ></script>
28 24
 {% endif %}
25
+<script type="text/javascript">
26
+        searx = {};
27
+        searx.autocompleter = {% if autocomplete %}true{% else %}false{% endif %};
28
+</script>
29 29
 <script src="{{ url_for('static', filename='js/searx.js') }}" ></script>
30 30
 </div>
31 31
 </body>

+ 5
- 3
searx/templates/default/categories.html Прегледај датотеку

@@ -1,7 +1,9 @@
1 1
 <div id="categories">
2
+    <div id="categories_container">
2 3
 {% for category in categories %}
3
-    <div class="checkbox_container">
4
-        <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label>
5
-    </div>
4
+        <div class="checkbox_container">
5
+             <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label>
6
+        </div>
6 7
 {% endfor %}
8
+    </div>
7 9
 </div>

+ 2
- 1
searx/templates/default/index.html Прегледај датотеку

@@ -1,6 +1,5 @@
1 1
 {% extends "default/base.html" %}
2 2
 {% block content %}
3
-{% include 'default/github_ribbon.html' %}
4 3
 <div class="center">
5 4
     <div class="title"><h1>searx</h1></div>
6 5
     {% include 'default/search.html' %}
@@ -9,4 +8,6 @@
9 8
         <a href="{{ url_for('preferences') }}" class="hmarg">{{ _('preferences') }}</a>
10 9
     </p>
11 10
 </div>
11
+{% include 'default/github_ribbon.html' %}
12 12
 {% endblock %}
13
+

+ 1
- 1
searx/templates/default/infobox.html Прегледај датотеку

@@ -2,7 +2,7 @@
2 2
   <h2>{{ infobox.infobox }}</h2>
3 3
   {% if infobox.img_src %}<img src="{{ infobox.img_src }}" />{% endif %}
4 4
   <p>{{ infobox.entity }}</p>
5
-  <p>{{ infobox.content }}</p>
5
+  <p>{{ infobox.content | safe }}</p>
6 6
   {% if infobox.attributes %}
7 7
   <div class="attributes">
8 8
     <table>

+ 2
- 9
searx/templates/default/result_templates/default.html Прегледај датотеку

@@ -1,13 +1,6 @@
1 1
 <div class="result {{ result.class }}">
2
-
3
-  {% if result['favicon'] %}
4
-    <img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />
5
-  {% endif %}
6
-
7
-  <div>
8
-    <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
2
+    <h3 class="result_title"> {% if result['favicon'] %}<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />{% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
9 3
     <p class="url">{{ result.pretty_url }} <a class="cache_link" href="https://web.archive.org/web/{{ result.url }}">cached</a></p>
10
-	{% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
4
+    {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
11 5
     <p class="content">{% if result.img_src %}<img src="{{ result.img_src }}" class="image" />{% endif %}{% if result.content %}{{ result.content|safe }}<br class="last"/>{% endif %}</p>
12
-  </div>
13 6
 </div>

+ 2
- 6
searx/templates/default/result_templates/videos.html Прегледај датотеку

@@ -1,12 +1,8 @@
1 1
 <div class="result">
2
-  {% if result['favicon'] %}
3
-    <img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />
4
-  {% endif %}
5
-
6 2
     <p>
7
-      <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
3
+      <h3 class="result_title"> {% if result['favicon'] %}<img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" />{% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
8 4
       {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %}
9
-      <a href="{{ result.url }}"><img width="400px" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a>
5
+      <a href="{{ result.url }}"><img class="thumbnail" src="{{ result.thumbnail }}" title={{ result.title }} alt=" {{ result.title }}"/></a>
10 6
       <p class="url">{{ result.url }}</p>
11 7
     </p>
12 8
 </div>

+ 4
- 2
searx/templates/default/results.html Прегледај датотеку

@@ -1,7 +1,7 @@
1 1
 {% extends "default/base.html" %}
2 2
 {% block title %}{{ q }} - {% endblock %}
3 3
 {% block content %}
4
-<div class="right"><a href="{{ url_for('preferences') }}" id="preferences"><span>preferences</span></a></div>
4
+<div class="preferences_container right"><a href="{{ url_for('preferences') }}" id="preferences"><span>preferences</span></a></div>
5 5
 <div class="small search center">
6 6
     {% include 'default/search.html' %}
7 7
 </div>
@@ -80,7 +80,7 @@
80 80
             </form>
81 81
         {% endif %}
82 82
         <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}">
83
-            <div class="left">
83
+            <div class="right">
84 84
             {% for category in selected_categories %}
85 85
             <input type="hidden" name="category_{{ category }}" value="1"/>
86 86
             {% endfor %}
@@ -89,6 +89,8 @@
89 89
             <input type="submit" value="{{ _('next page') }} >>" />
90 90
             </div>
91 91
         </form>
92
+
93
+        <br />
92 94
     </div>
93 95
     {% endif %}
94 96
 </div>

+ 1
- 1
searx/templates/default/search.html Прегледај датотеку

@@ -1,6 +1,6 @@
1 1
 <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form">
2 2
   <div id="search_wrapper">
3
-    <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" {% if q %}value="{{ q }}"{% endif %}/>
3
+    <input type="text" placeholder="{{ _('Search for...') }}" id="q" class="q" name="q" tabindex="1" autocomplete="off" size="100" {% if q %}value="{{ q }}"{% endif %}/>
4 4
     <input type="submit" value="search" id="search_submit" />
5 5
   </div>
6 6
   {% include 'default/categories.html' %}