Browse Source

[enh] set up special css classes for highlighting results + highlight definitions with dark grey border

rhapsodhy 11 years ago
parent
commit
74ca542a02

+ 4
- 3
searx/engines/duckduckgo_definitions.py View File

@@ -13,9 +13,10 @@ def response(resp):
13 13
     results = []
14 14
     if 'Definition' in search_res:
15 15
         if search_res.get('AbstractURL'):
16
-            res = {'title'   : search_res.get('Heading', '')
17
-                  ,'content' : search_res.get('Definition', '')
18
-                  ,'url'     : search_res.get('AbstractURL', '')
16
+            res = {'title'    : search_res.get('Heading', '')
17
+                  ,'content'  : search_res.get('Definition', '')
18
+                  ,'url'      : search_res.get('AbstractURL', '')
19
+                  ,'class'   : 'definition_result'
19 20
                   }
20 21
             results.append(res)
21 22
 

+ 9
- 4
searx/static/css/style.css View File

@@ -97,6 +97,11 @@ a:visited { color: #7b11be; }
97 97
 .image_result p span a { color: #FFFFFF; }
98 98
 .image_result p:hover span a { display: block; position: absolute; bottom: 0; right: 0; padding: 4px; background-color: rgba(0, 0, 0, 0.6); font-size: 0.7em; }
99 99
 
100
+.torrent_result { border-left: 10px solid lightgray; padding-left: 3px; }
101
+.torrent_result p { margin: 3px; font-size: 0.8em; }
102
+
103
+.definition_result { border-left: 10px solid gray; padding-left: 3px; }
104
+
100 105
 .percentage { position: relative; width: 300px; }
101 106
 .percentage div { background: #444444; }
102 107
 td { padding: 0 4px; }
@@ -142,7 +147,7 @@ tr:hover td { background: #DDDDDD; }
142 147
 #suggestions form { display: block; }
143 148
 #suggestions input { padding: 2px 6px; margin: 2px 4px;  font-size: 0.8em; display: inline-block; background: #E4E4E4; border-radius: 4px; border: 0; cursor: pointer; }
144 149
 
145
-#preferences { 
150
+#preferences {
146 151
     top: 10px;
147 152
     padding: 0;
148 153
     border: 0;
@@ -163,7 +168,7 @@ tr:hover td { background: #DDDDDD; }
163 168
 }
164 169
 
165 170
 @media screen and (max-width: 60em) {
166
-    
171
+
167 172
   #suggestions { position: static; max-width: 50em; margin: 0 0 2px 0; padding: 0; float: none; border: none; width: auto }
168 173
   #suggestions span { display: inline; font-size: 0.8em }
169 174
   #suggestions form { display: inline; }
@@ -172,13 +177,13 @@ tr:hover td { background: #DDDDDD; }
172 177
 }
173 178
 
174 179
 @media screen and (max-width: 680px) {
175
-    
180
+
176 181
   #search_wrapper { width: 90%; clear:both; overflow: hidden }
177 182
 
178 183
   .right { display: none; postion: fixed !important; top: 100px; right: 0px; }
179 184
 
180 185
   #categories { font-size: 80% }
181
-  
186
+
182 187
   #categories .checkbox_container { margin-top: 2px; margin: 0 2px; }
183 188
 
184 189
   .result { border-top: 1px solid #e8e7e6; margin: 7px 0 6px 0;  }

+ 1
- 1
searx/templates/result_templates/default.html View File

@@ -1,4 +1,4 @@
1
-<div class="result">
1
+<div class="result {{ result.class }}">
2 2
     <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3>
3 3
     <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p>
4 4
     <p class="url">{{ result.pretty_url }}</p>