summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/src
diff options
context:
space:
mode:
authorBnyro <bnyro@tutanota.com>2024-02-21 19:05:54 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-02-25 16:22:37 +0100
commitdb1f9b31c9063c983560d2e5c24aad61a4ef87c8 (patch)
treee5828385c98bdb94449730bfee81cdd62e80f1b3 /searx/static/themes/simple/src
parente76ab1a4b3a99b0ec2ef90c3aadc92ffbf6889b1 (diff)
downloadsearxng-db1f9b31c9063c983560d2e5c24aad61a4ef87c8.tar.gz
searxng-db1f9b31c9063c983560d2e5c24aad61a4ef87c8.zip
[feat] images: show resolution inside the image and fix image details overflow
Co-authored-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/static/themes/simple/src')
-rw-r--r--searx/static/themes/simple/src/less/detail.less5
-rw-r--r--searx/static/themes/simple/src/less/style.less11
2 files changed, 15 insertions, 1 deletions
diff --git a/searx/static/themes/simple/src/less/detail.less b/searx/static/themes/simple/src/less/detail.less
index 253ffd5b2..fd7858a1e 100644
--- a/searx/static/themes/simple/src/less/detail.less
+++ b/searx/static/themes/simple/src/less/detail.less
@@ -67,7 +67,10 @@ article.result-images .detail {
p {
color: var(--color-result-detail-label-font);
font-size: 0.9rem;
- line-height: 0.9rem;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ margin: 0.8rem 0;
span {
display: inline-block;
diff --git a/searx/static/themes/simple/src/less/style.less b/searx/static/themes/simple/src/less/style.less
index 7b067a170..c7f459e59 100644
--- a/searx/static/themes/simple/src/less/style.less
+++ b/searx/static/themes/simple/src/less/style.less
@@ -464,6 +464,17 @@ article[data-vim-selected].category-social {
background: var(--color-result-image-background);
}
+ .image_resolution {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ background: rgba(0, 0, 0, 50%);
+ padding: 0.3rem 0.5rem;
+ font-size: 0.9rem;
+ color: #fff;
+ border-top-left-radius: 0.3rem;
+ }
+
span.title,
span.source {
display: block;