diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-06-10 09:30:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-10 09:30:41 +0200 |
| commit | 73dbee45a649bdb6363717be0670bf4f35bf06a9 (patch) | |
| tree | c13917ed106cfac408515c377f66f2fa0bb5aa2e /searx/static/themes/simple/less | |
| parent | 68df982e21b0f4440485dd690b9396ec34ab0cc0 (diff) | |
| parent | 15178e5b96d3e54a5d62660442b207164b4cb904 (diff) | |
Merge pull request #90 from searxng/enh-osm-engine
[enh] improve openstreetmap engine
Diffstat (limited to 'searx/static/themes/simple/less')
| -rw-r--r-- | searx/static/themes/simple/less/style.less | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/searx/static/themes/simple/less/style.less b/searx/static/themes/simple/less/style.less index 3b0506b98..61c0a93de 100644 --- a/searx/static/themes/simple/less/style.less +++ b/searx/static/themes/simple/less/style.less @@ -304,6 +304,38 @@ article.result-images[data-vim-selected]::before { } } +.result-map { + + img.image { + float: right !important; + height: 100px !important; + width: auto !important; + } + + table { + font-size: .9em; + width: auto; + border-collapse: separate; + border-spacing: 0 0.35rem; + + th { + font-weight: inherit; + width: 17rem; + vertical-align: top; + text-align: left; + } + + td { + vertical-align: top; + text-align: left; + } + } +} + +.hidden { + display: none !important; +} + .torrent_result { border-left: 10px solid @color-result-torrent-border; padding-left: 3px; |