浏览代码

add own pics modal window

Noemi Vanyi 8 年前
父节点
当前提交
5fa6af648d

+ 1
- 1
searx/static/themes/oscar/css/logicodev.min.css
文件差异内容过多而无法显示
查看文件


+ 67
- 0
searx/static/themes/oscar/less/logicodev/modal-pic.less 查看文件

@@ -0,0 +1,67 @@
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
+    @media (max-width: 7680px) {
35
+        & > div {
36
+            position: relative;
37
+        }
38
+    }
39
+
40
+    .image-paging-left {
41
+        font-size: 2.2rem;
42
+        padding-right: 1.0rem;
43
+    }
44
+
45
+    .image-paging-right {
46
+        font-size: 2.2rem;
47
+        padding-left: 1.2rem;
48
+    }
49
+
50
+    .image-container::before {
51
+        display: block;
52
+        min-width: 1.0rem;
53
+        max-width: 60.0rem;
54
+        min-height: 10.0rem;
55
+        height: 30.0rem;
56
+        content: "";
57
+    }
58
+}
59
+
60
+.modal-close {
61
+    position:fixed;
62
+    top: 0;
63
+    left: 0;
64
+    height: 100% !important;
65
+    width: 100% !important;
66
+    z-index: -1;
67
+}

+ 2
- 0
searx/static/themes/oscar/less/logicodev/oscar.less 查看文件

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

+ 44
- 29
searx/templates/oscar/result_templates/images.html 查看文件

@@ -1,39 +1,54 @@
1
-{% from 'oscar/macros.html' import draw_favicon %}
2
-
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">
1
+<a href="#open-modal-{{ index }}-{{ pageno }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>
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 }}" />
5 3
 </a>
6 4
 
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>
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>
10
+
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 }}"><div class="image-container"></div></a>
13 27
             </div>
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 }}">
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>
16 33
                 {% 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 %}
22 34
             </div>
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>
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>
35 41
                 </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>
36 50
             </div>
37 51
         </div>
38 52
     </div>
53
+    <a href="#img-result-thumb-{{ index }}-{{ pageno }}" class="modal-close"></a>
39 54
 </div>