Browse Source

Revert "Merge pull request #793 from kvch/pics-modal"

This reverts commit bff41987a49af9ae53ff9fc3494fa7973ac03500, reversing
changes made to d08108be6293c8764f0d1d950a7aab283cddffed.
Noémi Ványi 8 years ago
parent
commit
e8319fa2cb

+ 0
- 4
searx/static/plugins/js/infinite_scroll.js View File

@@ -4,13 +4,9 @@ $(document).ready(function() {
4 4
         if ($(document).height() - win.height() == win.scrollTop()) {
5 5
             var formData = $('#pagination form:last').serialize();
6 6
             if (formData) {
7
-                var pageno = $('#pagination input[name=pageno]:last').attr('value');
8 7
                 $('#pagination').html('<div class="loading-spinner"></div>');
9 8
                 $.post('./', formData, function (data) {
10
-                    var lastImageHref = $('.result-images:last a').attr('href');
11 9
                     var body = $(data);
12
-                    $('a[href^="#open-modal"]:last').attr('href', '#open-modal-1-' + pageno);
13
-                    body.find('.modal-image a:first').attr('href', lastImageHref);
14 10
                     $('#pagination').remove();
15 11
                     $('#main_results').append('<hr/>');
16 12
                     $('#main_results').append(body.find('.result'));

+ 1
- 1
searx/static/themes/oscar/css/logicodev.min.css
File diff suppressed because it is too large
View File


+ 1
- 1
searx/static/themes/oscar/css/pointhi.min.css
File diff suppressed because it is too large
View File


+ 0
- 61
searx/static/themes/oscar/less/logicodev/modal-pic.less View File

@@ -1,61 +0,0 @@
1
-.modal-image {
2
-    position: fixed;
3
-    top: 0;
4
-    right: 0;
5
-    bottom: 0;
6
-    left: 0;
7
-    background: rgba(0,0,0,0.8);
8
-    z-index: 1000000001;
9
-    opacity:0 !important;
10
-    pointer-events: none;
11
-
12
-    button {
13
-        display: none;
14
-    }
15
-
16
-    &:target {
17
-        opacity: 1 !important;
18
-        pointer-events: auto;
19
-    }
20
-
21
-    & > div {
22
-        margin: 2% auto;
23
-        width: 97%;
24
-        background: @dim-gray;
25
-        border: @gray 0.1rem solid;
26
-    }
27
-
28
-    @media (min-width: 769px) {
29
-        & > div {
30
-            max-width: 60.0rem;
31
-        }
32
-    }
33
-
34
-    .image-paging-left {
35
-        font-size: 2.2rem;
36
-        padding-right: 1.0rem;
37
-    }
38
-
39
-    .image-paging-right {
40
-        font-size: 2.2rem;
41
-        padding-left: 1.2rem;
42
-    }
43
-
44
-    .image-container::before {
45
-        display: block;
46
-        min-width: 1.0rem;
47
-        max-width: 60.0rem;
48
-        min-height: 10.0rem;
49
-        height: 30.0rem;
50
-        content: "";
51
-    }
52
-}
53
-
54
-.modal-close {
55
-    position:fixed;
56
-    top: 0;
57
-    left: 0;
58
-    height: 100% !important;
59
-    width: 100% !important;
60
-    z-index: -1;
61
-}

+ 0
- 2
searx/static/themes/oscar/less/logicodev/oscar.less View File

@@ -19,5 +19,3 @@
19 19
 @import "cursor.less";
20 20
 
21 21
 @import "code.less";
22
-
23
-@import "modal-pic.less";

+ 0
- 4
searx/static/themes/oscar/less/pointhi/oscar.less View File

@@ -17,7 +17,3 @@
17 17
 @import "code.less";
18 18
 
19 19
 @import "navbar.less";
20
-
21
-@import "../logicodev/variables.less";
22
-
23
-@import "../logicodev/modal-pic.less";

+ 29
- 44
searx/templates/oscar/result_templates/images.html View File

@@ -1,54 +1,39 @@
1
-<a href="#open-modal-{{ index }}-{{ pageno }}">
2
-    <img src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" class="img-thumbnail" id="img-result-thumb-{{ index }}" />
3
-</a>
1
+{% from 'oscar/macros.html' import draw_favicon %}
4 2
 
5
-<style type="text/css" media="screen">
6
-#open-modal-{{ index }}-{{ pageno }}:target .image-container::before {
7
-    background: url({{ image_proxify(result.img_src)|safe }}) no-repeat center/contain;
8
-}
9
-</style>
3
+<a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} data-toggle="modal" data-target="#modal-{{ index }}-{{pageno}}">
4
+    <img src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}" title="{{ result.title|striptags }}" class="img-thumbnail">
5
+</a>
10 6
 
11
-<div id="open-modal-{{ index }}-{{ pageno }}" class="modal-image">
12
-    <div class="container modal-dialog">
13
-        <div class="row">
14
-            <div class="col-md-12 col-sm-12 col-xs-12 modal-header">
15
-                <a {% if index != 1 %}href="#open-modal-{{ index-1 }}-{{ pageno }}"{% endif %}>
16
-                    <span class="pull-left glyphicon glyphicon-chevron-left image-paging-left"></span>
17
-                 </a>
18
-                <a href="#open-modal-{{ index+1 }}-{{ pageno }}">
19
-                    <span class="image-paging-right pull-right glyphicon glyphicon-chevron-right"></span>
20
-                </a>
21
-                <h4 class="modal-title image-title">{{ result.title|striptags }}</h4>
22
-            </div>
23
-        </div>
24
-        <div class="row">
25
-            <div class="col-md-12 col-sm-12 col-xs-12 modal-body">
26
-                <a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}><div class="image-container"></div></a>
7
+<div class="modal fade" id="modal-{{ index }}-{{ pageno }}" tabindex="-1" role="dialog" aria-hidden="true">
8
+    <div class="modal-dialog">
9
+        <div class="modal-wrapper">
10
+            <div class="modal-header">
11
+                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
12
+                <h4 class="modal-title">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}{{ result.title|striptags }}</h4>
27 13
             </div>
28
-        </div>
29
-        {% if result.content %}
30
-        <div class="row">
31
-            <div class="col-md-12 hidden-sm hidden-xs modal-body">
32
-                <p class="result-content">{{ result.content|safe }}</p>
14
+            <div class="modal-body">
15
+                <img class="img-responsive center-block" src="{% if result.thumbnail_src %}{{ image_proxify(result.thumbnail_src) }}{% else %}{{ image_proxify(result.img_src) }}{% endif %}" alt="{{ result.title|striptags }}">
33 16
                 {% if result.author %}<span class="photo-author">{{ result.author }}</span><br />{% endif %}
17
+                {% if result.content %}
18
+                    <p class="result-content">
19
+                        {{ result.content }}
20
+                    </p>
21
+                {% endif %}
34 22
             </div>
35
-        </div>
36
-        {% endif %}
37
-        <div class="modal-footer">
38
-            <div class="row">
39
-                <div class="col-md-10 col-xs-12">
40
-                    <p class="text-muted pull-left">{{ result.pretty_url }}</p>
23
+            <div class="modal-footer">
24
+                <div class="clearfix"></div>
25
+                <span class="label label-default pull-right">{{ result.engine }}</span>
26
+                <p class="text-muted pull-left">{{ result.pretty_url }}</p>
27
+                <div class="clearfix"></div>
28
+				<div class="row">
29
+                    <div class="col-md-6">
30
+                        <a href="{{ result.img_src }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="btn btn-default">{{ _('Get image') }}</a>
31
+                    </div>
32
+                    <div class="col-md-6">
33
+                        <a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %} class="btn btn-default">{{ _('View source') }}</a>
34
+                    </div>
41 35
                 </div>
42
-                <div class="col-md-2 hidden-sm hidden-xs">
43
-                    <span class="label label-default pull-right">{{ result.engine }}</span>
44
-                </div>
45
-            </div>
46
-            <div class="row">
47
-                <a href="{{ result.url }}" class="btn btn-default">
48
-                    {{ _('View source') }}
49
-                </a>
50 36
             </div>
51 37
         </div>
52 38
     </div>
53
-    <a href="#img-result-thumb-{{ index }}-{{ pageno }}" class="modal-close"></a>
54 39
 </div>