forked from Icycoide/searxng
[feat] add favicons to result urls
This commit is contained in:
parent
3e747d0491
commit
e17d7632d0
15 changed files with 247 additions and 1 deletions
5
searx/static/themes/simple/img/empty_favicon.svg
Normal file
5
searx/static/themes/simple/img/empty_favicon.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
||||
<path fill="#fff" d="M0 0h24v24H0z"/>
|
||||
<path fill="#58f" d="M11 20.85a.92.92 0 0 1-1.1.93A10 10 0 0 1 2.06 13c-.06-.55.4-1 .95-1h3a1 1 0 0 1 1 1 3 3 0 0 0 3 3 1 1 0 0 1 1 1v3.85Zm6-1.92c0 .77.83 1.23 1.42.74a10 10 0 0 0 2.03-2.32c.39-.61-.09-1.35-.81-1.35H18a1 1 0 0 0-1 1v1.93ZM12 2a10 10 0 0 1 6.65 2.53c.61.55.17 1.47-.65 1.47h-.15A2.85 2.85 0 0 0 15 8.85c0 .33-.18.62-.47.77l-.08.04a1 1 0 0 1-.9 0l-.08-.04a.85.85 0 0 1-.47-.77A2.85 2.85 0 0 0 10.15 6H10a1 1 0 0 1-1-1V3.2c0-.44.28-.84.7-.94C10.45 2.1 11.22 2 12 2Z"/>
|
||||
<path fill="#58f" d="M3.42 10c-.63 0-1.1-.58-.9-1.18.6-1.8 1.7-3.36 3.12-4.53C6.2 3.82 7 4.26 7 5a3 3 0 0 0 3 3h.15c.47 0 .85.38.85.85 0 1.09.61 2.07 1.58 2.56l.08.04a3 3 0 0 0 2.68 0l.08-.04A2.85 2.85 0 0 0 17 8.85c0-.47.38-.85.85-.85h2.66c.4 0 .77.23.9.6a9.98 9.98 0 0 1 .52 4.6.94.94 0 0 1-.95.8H18a3 3 0 0 0-3 3v3.8c0 .44-.28.84-.7.94l-.2.04a.92.92 0 0 1-1.1-.93V17a3 3 0 0 0-3-3 1 1 0 0 1-1-1 3 3 0 0 0-3-3H3.42Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
|
@ -378,3 +378,12 @@ html.no-js #clear_search.hide_if_nojs {
|
|||
#categories_container {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.favicon img {
|
||||
height: 1.8rem;
|
||||
width: 1.8rem;
|
||||
border-radius: 20%;
|
||||
background-color: #ddd;
|
||||
border: 1px solid #ccc;
|
||||
display: flex;
|
||||
}
|
||||
|
|
|
@ -82,4 +82,8 @@
|
|||
transform: scale(1, 1);
|
||||
}
|
||||
|
||||
.favicon {
|
||||
margin: 0 8px 0 0;
|
||||
}
|
||||
|
||||
@import "style.less";
|
||||
|
|
|
@ -96,6 +96,10 @@
|
|||
|
||||
.result .url_wrapper {
|
||||
justify-content: end;
|
||||
|
||||
.favicon {
|
||||
margin: 0 0 0 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -234,6 +234,7 @@ article[data-vim-selected].category-social {
|
|||
|
||||
.url_wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 1rem;
|
||||
color: var(--color-result-url-font);
|
||||
flex-wrap: nowrap;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue