diff options
| author | Alexandre Flament <alex@al-f.net> | 2022-04-09 15:24:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-09 15:24:11 +0200 |
| commit | e7644271531a7ea4d784bbb586f9e2725c546fd4 (patch) | |
| tree | 7545f79fc62e013a98e79a037225a25a694f9fb0 /searx/static/themes/simple/src | |
| parent | 921528123263e03002682399df055f50aa891b82 (diff) | |
| parent | 5e7f46991104a6583676c6c9319a81b6f9a4b151 (diff) | |
Merge branch 'master' into switch-md-parser
Diffstat (limited to 'searx/static/themes/simple/src')
| -rw-r--r-- | searx/static/themes/simple/src/less/style.less | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less index a65fb5b13..30889dd0b 100644 --- a/searx/static/themes/simple/src/less/style.less +++ b/searx/static/themes/simple/src/less/style.less @@ -145,7 +145,8 @@ article.result-images[data-vim-selected] { filter: opacity(60%); } - span.title { + span.title, + span.source { color: var(--color-result-image-span-font-selected); } } @@ -373,7 +374,7 @@ article[data-vim-selected].category-social { .result-images { flex-grow: 1; - padding: 0.5rem 0.5rem 2rem 0.5rem; + padding: 0.5rem 0.5rem 3rem 0.5rem; margin: 0.25rem; border: none !important; height: @results-image-row-height; @@ -393,7 +394,8 @@ article[data-vim-selected].category-social { background: var(--color-result-image-background); } - span.title { + span.title, + span.source { display: block; position: absolute; @@ -405,6 +407,11 @@ article[data-vim-selected].category-social { text-overflow: ellipsis; white-space: nowrap; } + + span.source { + padding: 1.8rem 0 0 0; + font-size: 0.7rem; + } } .result-map { |