[build] /static

This commit is contained in:
Alexandre Flament 2021-09-30 18:50:46 +02:00
parent df06dddc04
commit 1dfac73a64
14 changed files with 61 additions and 74 deletions

View File

@ -1532,7 +1532,7 @@ p.btn.btn-default {
.label-danger { .label-danger {
background: #ad1f12 none !important; background: #ad1f12 none !important;
} }
.searx-navbar { .searxng-navbar {
background: #333334; background: #333334;
height: 2.3rem; height: 2.3rem;
font-size: 1.3rem; font-size: 1.3rem;
@ -1541,13 +1541,13 @@ p.btn.btn-default {
font-weight: bold; font-weight: bold;
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
} }
.searx-navbar a, .searxng-navbar a,
.searx-navbar a:hover { .searxng-navbar a:hover {
margin-right: 2rem; margin-right: 2rem;
color: white; color: white;
text-decoration: none; text-decoration: none;
} }
.searx-navbar .instance a { .searxng-navbar .instance a {
color: #01D7D4; color: #01D7D4;
margin-left: 2rem; margin-left: 2rem;
} }

View File

@ -732,7 +732,7 @@
color: #D19A66; color: #D19A66;
} }
/* Literal.Number.Integer.Long */ /* Literal.Number.Integer.Long */
.searx-navbar { .searxng-navbar {
background: #29314D; background: #29314D;
height: 2.3rem; height: 2.3rem;
font-size: 1.3rem; font-size: 1.3rem;
@ -741,13 +741,13 @@
font-weight: bold; font-weight: bold;
margin-bottom: 0.8rem; margin-bottom: 0.8rem;
} }
.searx-navbar a, .searxng-navbar a,
.searx-navbar a:hover { .searxng-navbar a:hover {
margin-right: 2rem; margin-right: 2rem;
color: white; color: white;
text-decoration: none; text-decoration: none;
} }
.searx-navbar .instance a { .searxng-navbar .instance a {
color: #01D7D4; color: #01D7D4;
margin-left: 2rem; margin-left: 2rem;
} }

Binary file not shown.

View File

@ -1037,7 +1037,7 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
.cursor-pointer { .cursor-pointer {
cursor: pointer !important; cursor: pointer !important;
} }
.searx-navbar { .searxng-navbar {
background: #eee; background: #eee;
color: #aaa; color: #aaa;
height: 2.3rem; height: 2.3rem;
@ -1047,12 +1047,12 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
font-weight: bold; font-weight: bold;
margin-bottom: 1.3rem; margin-bottom: 1.3rem;
} }
.searx-navbar a, .searxng-navbar a,
.searx-navbar a:hover { .searxng-navbar a:hover {
margin-right: 2rem; margin-right: 2rem;
text-decoration: none; text-decoration: none;
} }
.searx-navbar .instance a { .searxng-navbar .instance a {
color: #444; color: #444;
margin-left: 2rem; margin-left: 2rem;
} }

Binary file not shown.

Binary file not shown.

View File

@ -1,20 +1,11 @@
/** /**
* searx is free software: you can redistribute it and/or modify * @license
* it under the terms of the GNU Affero General Public License as published by * (C) Copyright Contributors to the SearXNG project.
* the Free Software Foundation, either version 3 of the License, or * (C) Copyright Contributors to the searx project (2014 - 2021).
* (at your option) any later version. * SPDX-License-Identifier: AGPL-3.0-or-later
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2019 by Alexandre Flament
*/ */
window.searx = (function(d) {
window.searxng = (function(d) {
'use strict'; 'use strict';
// //
@ -32,26 +23,19 @@ window.searx = (function(d) {
translations: JSON.parse(script.getAttribute('data-translations')) translations: JSON.parse(script.getAttribute('data-translations'))
}; };
})(document); })(document);
window.searx = {};
;/** ;/**
* searx is free software: you can redistribute it and/or modify * @license
* it under the terms of the GNU Affero General Public License as published by * (C) Copyright Contributors to the SearXNG project.
* the Free Software Foundation, either version 3 of the License, or * (C) Copyright Contributors to the searx project (2014 - 2021).
* (at your option) any later version.
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at> * (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/ */
$(document).ready(function(){ $(document).ready(function(){
var original_search_value = ''; var original_search_value = '';
if(searx.autocompleter) { if(searxng.autocompleter) {
var searchResults = new Bloodhound({ var searchResults = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'), datumTokenizer: Bloodhound.tokenizers.obj.whitespace('value'),
queryTokenizer: Bloodhound.tokenizers.whitespace, queryTokenizer: Bloodhound.tokenizers.whitespace,
@ -93,20 +77,11 @@ $(document).ready(function(){
} }
}); });
;/** ;/**
* searx is free software: you can redistribute it and/or modify * @license
* it under the terms of the GNU Affero General Public License as published by * (C) Copyright Contributors to the SearXNG project.
* the Free Software Foundation, either version 3 of the License, or * (C) Copyright Contributors to the searx project (2014 - 2021).
* (at your option) any later version.
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at> * (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/ */
$(document).ready(function(){ $(document).ready(function(){
@ -206,10 +181,17 @@ $(document).ready(function(){
/** /**
* Layout images according to their sizes * Layout images according to their sizes
*/ */
searx.image_thumbnail_layout = new searx.ImageLayout('#main_results', '#main_results .result-images', 'img.img-thumbnail', 15, 200); searxng.image_thumbnail_layout = new searx.ImageLayout('#main_results', '#main_results .result-images', 'img.img-thumbnail', 15, 200);
searx.image_thumbnail_layout.watch(); searxng.image_thumbnail_layout.watch();
}); });
;window.addEventListener('load', function() { ;/**
* @license
* (C) Copyright Contributors to the SearXNG project.
* (C) Copyright Contributors to the searx project (2014 - 2021).
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
window.addEventListener('load', function() {
// Hide infobox toggle if shrunk size already fits all content. // Hide infobox toggle if shrunk size already fits all content.
$('.infobox').each(function() { $('.infobox').each(function() {
var infobox_body = $(this).find('.infobox_body'); var infobox_body = $(this).find('.infobox_body');
@ -221,24 +203,15 @@ $(document).ready(function(){
}); });
}); });
;/** ;/**
* searx is free software: you can redistribute it and/or modify * @license
* it under the terms of the GNU Affero General Public License as published by * (C) Copyright Contributors to the SearXNG project.
* the Free Software Foundation, either version 3 of the License, or * (C) Copyright Contributors to the searx project (2014 - 2021).
* (at your option) any later version.
*
* searx is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with searx. If not, see < http://www.gnu.org/licenses/ >.
*
* (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at> * (C) 2014 by Thomas Pointhuber, <thomas.pointhuber@gmx.at>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/ */
$(document).ready(function(){ $(document).ready(function(){
$(".searx_init_map").on( "click", function( event ) { $(".searxng_init_map").on( "click", function( event ) {
var leaflet_target = $(this).data('leaflet-target'); var leaflet_target = $(this).data('leaflet-target');
var map_lon = $(this).data('map-lon'); var map_lon = $(this).data('map-lon');
var map_lat = $(this).data('map-lat'); var map_lat = $(this).data('map-lat');
@ -299,7 +272,14 @@ $(document).ready(function(){
$( this ).off( event ); $( this ).off( event );
}); });
}); });
;$(document).ready(function(){ ;/**
* @license
* (C) Copyright Contributors to the SearXNG project.
* (C) Copyright Contributors to the searx project (2014 - 2021).
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
$(document).ready(function(){
let engine_descriptions = null; let engine_descriptions = null;
function load_engine_descriptions() { function load_engine_descriptions() {
if (engine_descriptions == null) { if (engine_descriptions == null) {
@ -308,7 +288,7 @@ $(document).ready(function(){
for (const [engine_name, description] of Object.entries(data)) { for (const [engine_name, description] of Object.entries(data)) {
let elements = $('[data-engine-name="' + engine_name + '"] .description'); let elements = $('[data-engine-name="' + engine_name + '"] .description');
for(const element of elements) { for(const element of elements) {
let source = ' (<i>' + searx.translations['Source'] + ':&nbsp;' + description[1] + '</i>)'; let source = ' (<i>' + searxng.translations.Source + ':&nbsp;' + description[1] + '</i>)';
element.innerHTML = description[0] + source; element.innerHTML = description[0] + source;
} }
} }
@ -322,7 +302,14 @@ $(document).ready(function(){
}); });
} }
}); });
;$(document).ready(function(){ ;/**
* @license
* (C) Copyright Contributors to the SearXNG project.
* (C) Copyright Contributors to the searx project (2014 - 2021).
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
$(document).ready(function(){
$("#allow-all-engines").click(function() { $("#allow-all-engines").click(function() {
$(".onoffswitch-checkbox").each(function() { this.checked = false;}); $(".onoffswitch-checkbox").each(function() { this.checked = false;});
}); });

Binary file not shown.

Binary file not shown.